created project with cmake
This commit is contained in:
parent
c4b3d8ac5f
commit
5f6abf300e
54 changed files with 412 additions and 310 deletions
43
CMake/CMake.1.6.0/AutoBuild/BuildAllVS2017.cmd
Normal file
43
CMake/CMake.1.6.0/AutoBuild/BuildAllVS2017.cmd
Normal file
|
@ -0,0 +1,43 @@
|
|||
@ECHO OFF
|
||||
REM //========================================================================
|
||||
REM // Copyright (c) Technische Software Entwicklung Plazotta © 2021
|
||||
REM //
|
||||
REM // DESCRIPTION:
|
||||
REM // Batch Building for Windows / Project Framework.Core
|
||||
REM //
|
||||
REM // HISTORY:
|
||||
REM // 09.04.2021 / PP
|
||||
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 BuildVS2017Project.cmd %ProjectName% Release "%UnitTestExecutables%"
|
||||
IF %ERRORLEVEL% NEQ 0 goto ERROR
|
||||
call BuildVS2017Project.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
|
Loading…
Add table
Add a link
Reference in a new issue