diff --git a/.github/mac-bundle.sh b/.github/mac-bundle.sh index ebd88518..ff33a3e7 100755 --- a/.github/mac-bundle.sh +++ b/.github/mac-bundle.sh @@ -43,7 +43,7 @@ PlistBuddy Alber.app/Contents/Info.plist -c "add CFBundleName string Panda3DS" PlistBuddy Alber.app/Contents/Info.plist -c "add CFBundlePackageType string APPL" PlistBuddy Alber.app/Contents/Info.plist -c "add NSHumanReadableCopyright string Copyright 2023 Panda3DS Team" -PlistBuddy Alber.app/Contents/Info.plist -c "set LSMinimumSystemVersion 11.0" +PlistBuddy Alber.app/Contents/Info.plist -c "set LSMinimumSystemVersion 10.15" # Bundle dylibs dylibbundler -od -b -x Alber.app/Contents/MacOS/Alber -d Alber.app/Contents/Frameworks/ -p @rpath -s /Users/runner/work/Panda3DS/Panda3DS/VULKAN_SDK/lib diff --git a/CMakeLists.txt b/CMakeLists.txt index 14262e65..f9716761 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # We need to be able to use enable_language(OBJC) on Mac, so we need CMake 3.16 vs the 3.10 we use otherwise. Blame Apple. if (APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "Minimum OS X deployment version") + set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version") cmake_minimum_required(VERSION 3.16) else() cmake_minimum_required(VERSION 3.10)