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/blender/CMakeLists.txt
parente6d55c97ddea01ba08c9f01888adf715ab2c6ef0 (diff)
the compositor optional for cmake: WITH_COMPOSITOR
Diffstat (limited to 'source/blender/CMakeLists.txt')
-rw-r--r--source/blender/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt
index a0d840b5de6..3241acd7df6 100644
--- a/source/blender/CMakeLists.txt
+++ b/source/blender/CMakeLists.txt
@@ -95,7 +95,6 @@ add_subdirectory(blenkernel)
add_subdirectory(blenlib)
add_subdirectory(bmesh)
add_subdirectory(render)
-add_subdirectory(compositor)
add_subdirectory(blenfont)
add_subdirectory(blenloader)
add_subdirectory(ikplugin)
@@ -108,6 +107,10 @@ add_subdirectory(modifiers)
add_subdirectory(makesdna)
add_subdirectory(makesrna)
+if(WITH_COMPOSITOR)
+ add_subdirectory(compositor)
+endif()
+
if(WITH_IMAGE_OPENEXR)
add_subdirectory(imbuf/intern/openexr)
endif()