From 008ca17bd6f0f53022de67b6735bee0e78e59493 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sat, 23 Nov 2019 20:20:40 -0800 Subject: [PATCH] Add CMake rule to ensure Codec2 is built with the correct OSX libraries. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cede52..e681a07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,8 @@ # flags manually on cmd line # 2/ Should we standardise on just AVX? As machine we run on # may be different to machine we build on +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") + cmake_minimum_required(VERSION 3.0) project(LPCNet C)