The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

13 lines
548 B

4 weeks ago
  1. echo "Looking for preinstalled Boost"
  2. $env:PATH += ";$BOOST_ROOT"
  3. $env:PATH += ";$BOOST_LIBRARYDIR"
  4. md build
  5. cd build
  6. 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" ..
  7. cmake --build . --config Debug --target lib_carl
  8. cmake --build . --config Debug --target lib_carl_static
  9. cmake --build . --config Debug --target all-tests
  10. .\bin\Debug\runCoreTests.exe
  11. cmake --build . --config Debug --target RUN_TESTS