This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-12 05:21:35 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
|
|
|
mkdir build && cd build
|
2022-10-10 12:40:47 +00:00
|
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MSVCCache.cmake" -DCITRA_USE_CCACHE=ON -DCITRA_USE_BUNDLED_QT=1 -DCITRA_USE_BUNDLED_SDL2=1 -DCITRA_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_MF=ON -DENABLE_FFMPEG_VIDEO_DUMPER=ON
|
2020-11-12 05:21:35 +00:00
|
|
|
|
|
|
|
ninja
|
|
|
|
# show the caching efficiency
|
|
|
|
buildcache -s
|
|
|
|
|
|
|
|
ctest -VV -C Release || echo "::error ::Test error occurred on Windows MSVC build"
|