From 8e20187d8c8496b8dac0c9d5c1b886a0e45ed007 Mon Sep 17 00:00:00 2001 From: ZeroTier Date: Thu, 1 Aug 2019 15:58:32 -0700 Subject: [PATCH] set OS X deployment target to 10.9 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9ae6476e..3e89850de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,6 @@ # CMake build script for ZeroTier One cmake_minimum_required (VERSION 3.8) -project (zerotier-one) # Set a default build type if none was specified set(default_build_type "Release") @@ -32,7 +31,7 @@ if (BUILD_CENTRAL_CONTROLLER) add_subdirectory("ext/librabbitmq") endif(BUILD_CENTRAL_CONTROLLER) - +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X Deployment Version") if(CMAKE_BUILD_TYPE STREQUAL "Debug") add_definitions(-DZT_TRACE) @@ -61,6 +60,7 @@ else(WIN32) endif(APPLE) endif(WIN32) +project(zerotier-one) add_subdirectory(node) add_subdirectory(controller)