add helper bat file to clone the Sempare Template Engine into lib

add gitignore entry so that the Sempare Template Engine folder is ignored by git
This commit is contained in:
Conrad Vermeulen 2023-12-23 12:19:48 +00:00
parent 4393c7b566
commit 43925b27fe
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -146,3 +146,4 @@ samples/WineCellarSample/winecellarclient_mobile/Android/Debug/WineCellarMobileC
samples/apachemodule/Apache24/logs/httpd.pid
samples/session_file_based/Win32/DEBUG/sessions/
unittests/general/UnitTestReports/
lib/sempare-delphi-template-engine

View File

@ -0,0 +1,12 @@
@echo off
echo This relies on the git command line to clone the Sempare Template Engine into this directory
echo .
echo This will checkout the Sempare Template engine into ..\lib\sempare-delphi-template-engine
echo .
pause
cd ..\lib
git clone https://github.com/sempare/sempare-delphi-template-engine.git
pause