xcode: cmake scripts inside frameworks in side xcframework differ from the top cmake script

This commit is contained in:
Anonymous Maarten
2024-05-22 15:28:21 +02:00
committed by Anonymous Maarten
parent e10207e831
commit 8954e42bcb
7 changed files with 271 additions and 99 deletions

View File

@@ -168,6 +168,17 @@ jobs:
-Werror=dev \
-B build_darwin
cmake --build build_darwin --config Release --verbose
cmake -S "${{ steps.src.outputs.path }}/cmake/test" \
-DTEST_FULL=FALSE \
-DTEST_STATIC=FALSE \
-DTEST_TEST=FALSE \
-DCMAKE_PREFIX_PATH="${{ steps.mount.outputs.mount_point }}/SDL3.xcframework/macos-arm64_x86_64" \
-DCMAKE_SYSTEM_NAME=Darwin \
-DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" \
-Werror=dev \
-B build_darwin_2
cmake --build build_darwin --config Release --verbose
- name: 'CMake (configure + build) iOS'
run: |
cmake -S "${{ steps.src.outputs.path }}/cmake/test" \