12 lines
269 B
Bash
Executable File
12 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
# export CTEST_OUTPUT_ON_FAILURE=1
|
|
|
|
mkdir build && cd build
|
|
cmake .. -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release -DTEAKRA_TEST_ASSETS_DIR="$HOME/assets" -DTEAKRA_RUN_TESTS=OFF
|
|
cmake --build . -- -maxcpucount
|
|
# ctest -C Release
|