Skip to content

Commit f9ea075

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents 8775671 + 58f488f commit f9ea075

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ set(MACOSX_BUNDLE_ICON immidi.icns)
8787
set(MACOSX_BUNDLE_ICON_FILE ${CMAKE_SOURCE_DIR}/test/${MACOSX_BUNDLE_ICON})
8888
# set where in the bundle to put the icns file
8989
set_source_files_properties(${MACOSX_BUNDLE_ICON_FILE} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
90+
#if we need run on MacOS before 12.0, then uncomment following code, but not guarantee it's working
91+
#set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
9092

9193
add_executable(
9294
immidi

imgui

Submodule imgui updated from 28c873f to b018bb3

libmidi/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ if (POLICY CMP0068)
88
cmake_policy(SET CMP0068 NEW)
99
endif()
1010

11+
#if we need run on MacOS before 12.0, then uncomment following code, but not guarantee it's working
12+
#if(APPLE)
13+
#set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
14+
#endif(APPLE)
15+
1116
option(USE_STATIC "Set to ON to build Static Library" OFF)
1217

1318
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations -Wno-writable-strings")

0 commit comments

Comments
 (0)