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>2012-06-30 18:14:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-30 18:14:22 +0400
commit90dc1d1353ec85b67e76a3c93eacf7f7216deaae (patch)
treec2836de60cbf5beef1dd7002f105189d6b4f2fa1 /source/creator
parente6d55c97ddea01ba08c9f01888adf715ab2c6ef0 (diff)
the compositor optional for cmake: WITH_COMPOSITOR
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 033b1352e51..d9ac43d7622 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -894,11 +894,15 @@ endif()
cycles_kernel
cycles_util
cycles_subd
- bf_compositor #added for opencl compositor
- bf_opencl #added for opencl compositor
bf_intern_raskter
)
+ if(WITH_COMPOSITOR)
+ #added for opencl compositor
+ list(APPEND BLENDER_SORTED_LIBS bf_compositor)
+ list(APPEND BLENDER_SORTED_LIBS bf_opencl)
+ endif()
+
if(WITH_LIBMV)
list(APPEND BLENDER_SORTED_LIBS extern_libmv)
list(APPEND BLENDER_SORTED_LIBS extern_ceres)