MacOS: Fix OSX deployment target in CMake and ci-build

This commit is contained in:
Jonathan G Rennison
2023-06-11 17:55:22 +01:00
parent 7a9cf87ff8
commit d9e7d2a7fd
2 changed files with 2 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
env: env:
MACOSX_DEPLOYMENT_TARGET: 10.9 MACOSX_DEPLOYMENT_TARGET: 10.13
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -17,7 +17,7 @@ if (EMSCRIPTEN)
endif() endif()
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9) set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13)
# Use GNUInstallDirs to allow customisation # Use GNUInstallDirs to allow customisation
# but set our own default data and bin dir # but set our own default data and bin dir