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.
2023-06-27 00:42:00 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake .. -G Ninja \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DENABLE_QT_TRANSLATION=ON \
|
|
|
|
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=ON \
|
|
|
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
|
|
|
|
-DUSE_DISCORD_PRESENCE=ON
|
|
|
|
ninja
|
|
|
|
ninja bundle
|
|
|
|
|
2023-10-09 06:56:01 +00:00
|
|
|
ccache -s -v
|
2023-06-27 00:42:00 +00:00
|
|
|
|
|
|
|
ctest -VV -C Release || echo "::error ::Test error occurred on Windows build"
|