Skip to content

Commit d6424eb

Browse files
committed
issue doxygen#11833 min macosx target version should be 10.15
1 parent ba7ae83 commit d6424eb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

CMakeLists.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ endif()
8787
if(use_sys_sqlite3)
8888
find_package(SQLite3 REQUIRED)
8989
endif()
90-
if(build_wizard)
91-
if(CMAKE_SYSTEM MATCHES "Darwin")
92-
set(MACOS_VERSION_MIN 11.0)
93-
endif()
90+
if(build_search AND CMAKE_SYSTEM MATCHES "Darwin")
91+
set(MACOS_VERSION_MIN 10.15)
92+
endif()
93+
if(build_wizard AND CMAKE_SYSTEM MATCHES "Darwin")
94+
set(MACOS_VERSION_MIN 11.0)
9495
endif()
9596

9697
# use C++17 standard for compiling (unless very new Clang is present)

0 commit comments

Comments
 (0)