Fixed linker error in static lib for GNU compiler. #267
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Apple iOS | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build_ios: | |
strategy: | |
matrix: | |
config: [Debug, Release] | |
fail-fast: false | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout Dependencies | |
run: git clone https://github.com/LukasBanana/GaussianLib.git | |
- name: Configure CMake | |
run: > | |
cmake -S . -B ${{github.workspace}}/build | |
-DCMAKE_BUILD_TYPE=${{ matrix.config }} | |
-DLLGL_BUILD_RENDERER_OPENGLES3=OFF | |
-DLLGL_BUILD_RENDERER_METAL=ON | |
-DLLGL_BUILD_EXAMPLES=OFF | |
-DCMAKE_SYSTEM_NAME=iOS | |
"-DCMAKE_OSX_ARCHITECTURES=arm64" | |
-DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 | |
-DCMAKE_XCODE_ATTRIBUTE_ONLY_ACTIVE_ARCH=NO | |
-DCMAKE_IOS_INSTALL_COMBINED=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.config }} | |