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-09-19 03:12:28 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2023-11-03 10:35:32 +00:00
|
|
|
# TODO: Work around pip install issues with Python 3.12 in the GitHub runner image.
|
|
|
|
# See: https://github.com/actions/runner-images/issues/8709
|
|
|
|
PYTHON_PATH=$(brew --prefix python@3.11)
|
|
|
|
export PATH=$PYTHON_PATH/bin:$PYTHON_PATH/libexec/bin:$PATH
|
|
|
|
|
2023-09-19 03:12:28 +00:00
|
|
|
mkdir build && cd build
|
|
|
|
cmake .. -GNinja \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_SYSTEM_NAME=iOS \
|
|
|
|
-DCMAKE_OSX_ARCHITECTURES=arm64 \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
|
|
-DENABLE_QT_TRANSLATION=ON \
|
|
|
|
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=ON \
|
|
|
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON
|
|
|
|
ninja
|
|
|
|
|
2023-10-09 06:56:01 +00:00
|
|
|
ccache -s -v
|