From d7063428fe5e9333e904498b9780d83d5281c484 Mon Sep 17 00:00:00 2001 From: Valerio Santinelli Date: Mon, 22 Jul 2024 16:55:09 +0200 Subject: [PATCH] Force generation of Xcode project for iOS --- .github/workflows/ios.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 3debef90..4aee6493 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -70,13 +70,13 @@ jobs: cd ../.. - name: Install system dependencies - run: brew install doxygen sphinx-doc graphviz autoconf + run: brew install doxygen sphinx-doc graphviz - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type run: | - cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -D IOS=1 -D BINOCLE_IOS_SDK=${{ matrix.APPLE_SDK }} -D BINOCLE_IOS_ARCH=${{ matrix.ARCH }} + cmake -G Xcode -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -D IOS=1 -D BINOCLE_IOS_SDK=${{ matrix.APPLE_SDK }} -D BINOCLE_IOS_ARCH=${{ matrix.ARCH }} - name: Build shell: bash