From cbc6e07362b197adb7d9d0a03797b5d68413a900 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 4 Mar 2013 13:00:31 -0800 Subject: [PATCH] test for source of hifi-mini build failure --- CMakeLists.txt | 4 ++-- interface/CMakeLists.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f7bc3a473..78d3019a69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 2.8) project(hifi) if(APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7) - set(CMAKE_OSX_SYSROOT macosx) + # set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7) +# set(CMAKE_OSX_SYSROOT macosx) endif() add_subdirectory(space) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 1c2c45f0e4..1d0c2b7264 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -12,8 +12,8 @@ if (APPLE) # link in required OS X frameworks and include the right GL headers set(CMAKE_EXE_LINKER_FLAGS "-framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework CoreServices -framework Carbon") set(GL_HEADERS "#include \n#include ") - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7) - set(CMAKE_OSX_SYSROOT macosx) + # set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7) + # set(CMAKE_OSX_SYSROOT macosx) else (APPLE) # include the right GL headers for UNIX set(GL_HEADERS "#include \n#include \n#include ")