forked from gazebosim/gz-physics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.bat
26 lines (19 loc) · 1.03 KB
/
configure.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
:: 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
:: Install dependencies
::call %win_lib% :download_unzip_install bullet dart
call %win_lib% :download_unzip_install eigen3-3.3.4.zip
call %win_lib% :install_ign_project ign-plugin default
:: Set configuration variables
@set build_type=Release
@if not "%1"=="" set build_type=%1
@echo Configuring for build type %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