mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-03 00:38:58 +00:00
412aeaa0d4
Moved MSVC to Github Actions as well.
9 lines
259 B
Bash
Executable File
9 lines
259 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MSVCCache.cmake" -DUSE_CCACHE=ON -DWARNINGS_AS_ERRORS=OFF -DUSE_BUNDLED_QT=1
|
|
|
|
ninja
|
|
# show the caching efficiency
|
|
buildcache -s
|