mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 03:18:55 +02:00
ios toolchain cmake
This commit is contained in:
parent
8a96c7c0fd
commit
edbc4b251f
2 changed files with 1204 additions and 0 deletions
27
.ci/ios/build.sh
Normal file
27
.ci/ios/build.sh
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh -ex
|
||||
|
||||
WORK_DIR="$PWD"
|
||||
if [ -z "$NPROC" ]; then
|
||||
NPROC="$(nproc)"
|
||||
fi
|
||||
|
||||
cmake -G Xcode -B build \
|
||||
-DCMAKE_TOOLCHAIN_FILE="$WORK_DIR/ios-toolchain.cmake" \
|
||||
-DPLATFORM=OS64 \
|
||||
-DENABLE_LIBUSB=OFF \
|
||||
-DENABLE_UPDATE_CHECKER=OFF \
|
||||
-DENABLE_QT=OFF \
|
||||
-DENABLE_OPENSSL=OFF \
|
||||
-DENABLE_WEB_SERVICE=OFF \
|
||||
-DENABLE_CUBEB=OFF \
|
||||
-DYUZU_ROOM=OFF \
|
||||
-DYUZU_ROOM_STANDALONE=OFF \
|
||||
-DYUZU_CMD=OFF \
|
||||
-DUSE_DISCORD_PRESENCE=OFF \
|
||||
-DYUZU_USE_EXTERNAL_FFMPEG=ON \
|
||||
-DYUZU_USE_CPM=ON \
|
||||
-DYUZU_USE_EXTERNAL_SDL2=ON \
|
||||
-DCPMUTIL_FORCE_BUNDLED=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
cmake --build build -- -j${NPROC}
|
||||
1177
.ci/ios/ios-toolchain.cmake
Normal file
1177
.ci/ios/ios-toolchain.cmake
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue