Skip to content

Commit 805c467

Browse files
committed
Build - update cmake OSX target and cmake ver
* cmake ver now matches that of the external app's cmake's version requirement * OSX target now 10.14 which is the currently oldest supported version of macOS
1 parent 7da0b85 commit 805c467

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
1414
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT ${PROJECT_NAME})
1515

1616
if(APPLE)
17-
set(CMAKE_OSX_DEPLOYMENT_TARGET '10.13')
17+
set(CMAKE_OSX_DEPLOYMENT_TARGET '10.14')
1818
endif()
1919

2020
set(APP_ROOT ${CMAKE_CURRENT_LIST_DIR})

app/external/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This CMakeLists builds all the external libraries required for a Sonic Pi
2-
cmake_minimum_required(VERSION 3.12)
2+
cmake_minimum_required(VERSION 3.13)
33

44
message(STATUS " Aubio Builder")
55

@@ -11,7 +11,7 @@ project(AubioBuilder
1111

1212
include(ExternalProject)
1313

14-
set(CMAKE_OSX_DEPLOYMENT_TARGET '10.13')
14+
set(CMAKE_OSX_DEPLOYMENT_TARGET '10.14')
1515

1616
# sp_midi
1717
ExternalProject_Add(sp_midi

0 commit comments

Comments
 (0)