Skip to content

Commit

Permalink
Build - set macOS deployment target to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Apr 28, 2024
1 parent 6d323b9 commit 622864a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ option(WITH_QT_GUI_WEBENGINE "Include experimental webengine functionality" OFF)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT ${PROJECT_NAME})

if(APPLE)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
set(CMAKE_OSX_DEPLOYMENT_TARGET "12")
endif()

set(APP_ROOT ${CMAKE_CURRENT_LIST_DIR})
Expand Down
2 changes: 1 addition & 1 deletion app/external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
include(GNUInstallDirs)
include(ExternalProject)

set(CMAKE_OSX_DEPLOYMENT_TARGET "13")
set(CMAKE_OSX_DEPLOYMENT_TARGET "12")

# sp_midi
ExternalProject_Add(sp_midi
Expand Down
2 changes: 1 addition & 1 deletion app/gui/qt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.2)
message(STATUS "CMakeLists: Sonic Pi Qt GUI")

if(APPLE)
set(CMAKE_OSX_DEPLOYMENT_TARGET "13")
set(CMAKE_OSX_DEPLOYMENT_TARGET "12")
endif()

project("Sonic Pi"
Expand Down

0 comments on commit 622864a

Please sign in to comment.