We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db26e01 commit f52027fCopy full SHA for f52027f
1 file changed
CMakeLists.txt
@@ -11,6 +11,11 @@
11
# Creation date: 2026-03-05T19:28:13.964+0100
12
# NOTICE: MADS Version 2.0.0
13
cmake_minimum_required(VERSION 3.28)
14
+# Match the prebuilt rerun_c library's deployment target to suppress
15
+# "was built for newer macOS version" linker warnings.
16
+if(APPLE AND NOT CMAKE_OSX_DEPLOYMENT_TARGET)
17
+ set(CMAKE_OSX_DEPLOYMENT_TARGET "26.2" CACHE STRING "Minimum macOS deployment target")
18
+endif()
19
project(machinetool VERSION 2.0.0 LANGUAGES CXX)
20
if(CMAKE_BUILD_TYPE STREQUAL "")
21
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
0 commit comments