mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 07:55:07 +01:00
6244f9e3fd
* android: Support x86_64 devices. * ci: Improve ccache hits and stats. * ci: Compress Android artifacts. * ci: Re-enable PCH and set ccache sloppiness appropriately.
18 lines
445 B
Bash
18 lines
445 B
Bash
#!/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
|
|
|
|
ccache -s -v
|
|
|
|
ctest -VV -C Release || echo "::error ::Test error occurred on Windows build"
|