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:
authorCampbell Barton <ideasman42@gmail.com>2010-11-30 21:52:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-30 21:52:39 +0300
commit42d6603caeb18e36b723f38e83f6e8fff3a6cd8c (patch)
treecd8838d9271d9013f30f20d8d5a12bb3c8a010ab /source/blenderplayer
parentc22dcbdd646ca3fd5c4441f7491f54a64e6caacc (diff)
Add option for CMake to build libredcode, also use CODEC prefix for ffmpeg, quicktime & sndfile options.
Diffstat (limited to 'source/blenderplayer')
-rw-r--r--source/blenderplayer/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blenderplayer/CMakeLists.txt b/source/blenderplayer/CMakeLists.txt
index d1aee8c9d16..f2b7b72ac9a 100644
--- a/source/blenderplayer/CMakeLists.txt
+++ b/source/blenderplayer/CMakeLists.txt
@@ -28,9 +28,9 @@ MESSAGE(STATUS "Configuring blenderplayer")
SETUP_LIBDIRS()
-IF(WITH_QUICKTIME)
+IF(WITH_CODEC_QUICKTIME)
ADD_DEFINITIONS(-DWITH_QUICKTIME)
-ENDIF(WITH_QUICKTIME)
+ENDIF(WITH_CODEC_QUICKTIME)
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
ADD_DEFINITIONS(-DWITH_BINRELOC)
@@ -119,9 +119,9 @@ IF(UNIX)
bf_blenkernel # duplicate for linking
)
- IF(WITH_QUICKTIME)
+ IF(WITH_CODEC_QUICKTIME)
SET(BLENDER_SORTED_LIBS ${BLENDER_SORTED_LIBS} bf_quicktime)
- ENDIF(WITH_QUICKTIME)
+ ENDIF(WITH_CODEC_QUICKTIME)
IF(WITH_CXX_GUARDEDALLOC)
SET(BLENDER_SORTED_LIBS ${BLENDER_SORTED_LIBS} bf_intern_guardedalloc_cpp)