Skip to content

Commit

Permalink
Revert "Remove configure.bat (#83)" (#84)
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
scpeters authored Apr 15, 2022
1 parent 73acac7 commit 1436de9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions configure.bat
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

0 comments on commit 1436de9

Please sign in to comment.