Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2012-10-06 22:53:57 +0400
committerJens Verwiebe <info@jensverwiebe.de>2012-10-06 22:53:57 +0400
commite7db06ad9db5a1a05b00fc835038d4366d637851 (patch)
treecd81e56652926503e1223b6b00b5c494f420d09e /CMakeLists.txt
parent868df3525e79ff6c4f5eb6a2801bb70553877fcb (diff)
Force USE_QTKIT for osx 64bit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 47a53d0edb1..1f0ef41fe59 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -319,6 +319,9 @@ if(APPLE)
option(WITH_COCOA "Use Cocoa framework instead of deprecated Carbon" ON)
option(USE_QTKIT "Use QtKit instead of Carbon quicktime (needed for having partial quicktime for 64bit)" OFF)
option(WITH_LIBS10.5 "Use 10.5 libs (needed for 64bit builds)" OFF)
+ if(CMAKE_OSX_ARCHITECTURES MATCHES x86_64)
+ set(USE_QTKIT ON CACHE BOOL "ON" FORCE) # no Quicktime in 64bit
+ endif()
endif()