created project with cmake

This commit is contained in:
Luis Stanglmeier 2022-06-23 13:44:39 +02:00
parent c4b3d8ac5f
commit 5f6abf300e
54 changed files with 412 additions and 310 deletions

View file

@ -0,0 +1,43 @@
@ECHO OFF
REM //========================================================================
REM // Copyright (c) Technische Software Entwicklung Plazotta © 2021
REM //
REM // DESCRIPTION:
REM // Batch Building for INtime / Project Framework.Core
REM //
REM // HISTORY:
REM // 27.07.2021 / DM
REM // Module created.
REM //========================================================================
setlocal
pushd .
REM =======================================================================
REM Setup Parameter
REM =======================================================================
set ProjectName=@TSEP_AUTOBUILD_PROJECT@
set UnitTestExecutables=@TSEP_AUTOBUILD_USED_UNITTEST@
REM
REM =======================================================================
REM Rebuild the project
REM =======================================================================
cd scripts
call BuildVS2017INtimeProject.cmd %ProjectName% Release "%UnitTestExecutables%"
IF %ERRORLEVEL% NEQ 0 goto ERROR
call BuildVS2017INtimeProject.cmd %ProjectName% Debug "%UnitTestExecutables%"
IF %ERRORLEVEL% NEQ 0 goto ERROR
goto END
REM
REM =======================================================================
REM Error
REM =======================================================================
:ERROR
echo Error during automated build ......
PAUSE
exit /b 1
REM
REM =======================================================================
REM END
REM =======================================================================
:END
echo Automated build successful done .....
exit /b 0