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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-11-18 12:49:42 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-11-18 12:49:42 +0300
commit624cd67d5571c7e6597151d124416a17a2095d3a (patch)
treee612a036a1390128b4640e86b015f8003bff100c /source/blender/quicktime/CMakeLists.txt
parent22e8616a270f3d78467bf136a98f13b2551e020a (diff)
Quicktime for Cocoa : import part
This makes quicktime import (.mov & quicktime handled image files such as .gif) available also for 64bit OSX Unfortunately, Apple currently incomplete implementation of QTKit has much lower performance than old Carbon Quicktime. FYI, it spawns a 32bit process "QTKitserver" to place calls to Quicktime 7. So this is mostly meant as a "backup" for 64bit OSX builds, until Apple releases full Quicktime X. Export part will come just after. CMake scripts updated: set WITH_QUICKTIME and USE_QTKIT to ON
Diffstat (limited to 'source/blender/quicktime/CMakeLists.txt')
-rw-r--r--source/blender/quicktime/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/quicktime/CMakeLists.txt b/source/blender/quicktime/CMakeLists.txt
index ac503bb62cb..14589ca4c5b 100644
--- a/source/blender/quicktime/CMakeLists.txt
+++ b/source/blender/quicktime/CMakeLists.txt
@@ -24,7 +24,11 @@
#
# ***** END GPL LICENSE BLOCK *****
-SET(SRC apple/quicktime_import.c apple/quicktime_export.c)
+IF(USE_QTKIT)
+ SET(SRC apple/qtkit_import.m apple/qtkit_export.m)
+ELSE(USE_QTKIT)
+ SET(SRC apple/quicktime_import.c apple/quicktime_export.c)
+ENDIF(USE_QTKIT)
SET(INC
.