Skip to content

Commit

Permalink
Merge pull request #25 from alexbatalov/main
Browse files Browse the repository at this point in the history
Update macOS/iOS deployment target (alexbatalov#440)
  • Loading branch information
roginvs authored Jan 13, 2025
2 parents 9be2e45 + 67375a5 commit 2657491
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
uses: actions/cache@v4
with:
path: build
key: ios-cmake-v2
key: ios-cmake-v3

- name: Configure
run: |
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
uses: actions/cache@v4
with:
path: build
key: macos-cmake-v4
key: macos-cmake-v5

- name: Configure
run: |
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ set(EXECUTABLE_NAME fallout2-ce)

if(APPLE)
if(IOS)
set(CMAKE_OSX_DEPLOYMENT_TARGET "11" CACHE STRING "")
set(CMAKE_OSX_DEPLOYMENT_TARGET "12" CACHE STRING "")
set(CMAKE_OSX_ARCHITECTURES "arm64" CACHE STRING "")
else()
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.11" CACHE STRING "")
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "")
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE STRING "")
endif()
endif()
Expand Down

0 comments on commit 2657491

Please sign in to comment.