From 0e7ae7319b96f3cbf172ffb072ac0b0de07c9fe5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 25 Jan 2013 16:54:30 +0000 Subject: [PATCH] From Thomas Hogarth, "Attached are two minor modifications to the master CMakeLists.txt file. It now points to sdk version 6.0 (I do intend to make this configurable my command line) It also added a search for libtiff to Apple builds mainly for use with osg earth." --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a566dfd00..46e434362 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -233,7 +233,7 @@ IF(APPLE) IF(OSG_BUILD_PLATFORM_IPHONE OR OSG_BUILD_PLATFORM_IPHONE_SIMULATOR) #you need to manually set the default sdk version here - SET (IPHONE_SDKVER "5.1" CACHE STRING "IOS SDK-Version") + SET (IPHONE_SDKVER "6.0" CACHE STRING "IOS SDK-Version") #the below is taken from ogre, it states the gcc stuff needs to happen before PROJECT() is called. I've no clue if we even need it # Force gcc <= 4.2 on iPhone @@ -591,6 +591,7 @@ IF(NOT ANDROID) ENDIF() ELSE() + FIND_PACKAGE(TIFF) FIND_PACKAGE(QuickTime) FIND_PACKAGE(QTKit) FIND_PACKAGE(CoreVideo)