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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-18 00:59:21 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-18 00:59:21 +0400
commitc628f04a7c39bcd178d06448f9ca5e9324141f50 (patch)
tree2ea3cf5870eb22560f619ffe9cf9819f8e44d56c /source/blenderplayer/CMakeLists.txt
parent0aa9ab69ccafdeff231927ff66ca8e87d4de8143 (diff)
- Fixed linking errors of blender player with CMake and XDND enabled
- Rest of changes to make XDND switch-off-able: link against extern_xdnd only if XDND is enabled
Diffstat (limited to 'source/blenderplayer/CMakeLists.txt')
-rw-r--r--source/blenderplayer/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blenderplayer/CMakeLists.txt b/source/blenderplayer/CMakeLists.txt
index 223df9c8b6a..7a63435c215 100644
--- a/source/blenderplayer/CMakeLists.txt
+++ b/source/blenderplayer/CMakeLists.txt
@@ -184,6 +184,10 @@ endif()
list(APPEND BLENDER_SORTED_LIBS extern_carve)
endif()
+ if(WITH_GHOST_XDND)
+ list(APPEND BLENDER_SORTED_LIBS extern_xdnd)
+ endif()
+
if(WITH_CODEC_QUICKTIME)
list(APPEND BLENDER_SORTED_LIBS bf_quicktime)
endif()