You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
548 B
13 lines
548 B
echo "Looking for preinstalled Boost"
|
|
$env:PATH += ";$BOOST_ROOT"
|
|
$env:PATH += ";$BOOST_LIBRARYDIR"
|
|
|
|
md build
|
|
cd build
|
|
|
|
cmake -G "Visual Studio 14 2015 Win64" -DBUILD_STATIC="ON" -DBOOST_ROOT="$BOOST_ROOT" -DBOOST_LIBRARYDIR="$BOOST_LIBRARYDIR" -DCMAKE_BUILD_TYPE=DEBUG -DBoost_COMPILER="-vc141" -DLOGGING="ON" ..
|
|
cmake --build . --config Debug --target lib_carl
|
|
cmake --build . --config Debug --target lib_carl_static
|
|
cmake --build . --config Debug --target all-tests
|
|
.\bin\Debug\runCoreTests.exe
|
|
cmake --build . --config Debug --target RUN_TESTS
|