mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-20 21:43:12 -07:00
Add macOS to AppVeyor
This commit is contained in:
parent
bf929cacd0
commit
db5b3a1499
3 changed files with 48 additions and 21 deletions
14
scripts/build-common.sh
Executable file
14
scripts/build-common.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
mkdir build && cd build || exit 1
|
||||
cmake \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH \
|
||||
-DCHIAKI_ENABLE_TESTS=ON \
|
||||
-DCHIAKI_ENABLE_CLI=OFF \
|
||||
-DCHIAKI_GUI_ENABLE_SDL_GAMECONTROLLER=ON \
|
||||
$CMAKE_EXTRA_ARGS \
|
||||
.. || exit 1
|
||||
make -j4 || exit 1
|
||||
test/chiaki-unit || exit 1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue