-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 73acac7. Signed-off-by: Steve Peters <[email protected]>
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
:: NOTE: This script is only meant to be used as part of the ignition developers' CI system | ||
:: Users and developers should build and install this library using cmake and Visual Studio | ||
|
||
:: Set configuration variables | ||
@set build_type=Release | ||
@if not "%1"=="" set build_type=%1 | ||
@echo Configuring for build type %build_type% | ||
|
||
:: Use legacy install location if unset | ||
@if "%WORKSPACE_INSTALL_DIR%"=="" set WORKSPACE_INSTALL_DIR="install\%build_type%" | ||
|
||
:: Go to the directory that this configure.bat file exists in | ||
cd /d %~dp0 | ||
|
||
:: Create a build directory and configure | ||
md build | ||
cd build | ||
cmake .. -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX="%WORKSPACE_INSTALL_DIR%" -DCMAKE_BUILD_TYPE="%build_type%" -DBUILD_TESTING:BOOL=False | ||
:: Note: We disable testing by default. If the intention is for the CI to build and test | ||
:: this project, then the CI script will turn it back on. | ||
|
||
:: If the caller wants to build and/or install, they should do so after calling this script |