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:
authorNicholas Bishop <nicholasbishop@gmail.com>2009-01-17 06:51:13 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2009-01-17 06:51:13 +0300
commitee180ff5ac140f5f19d9a00eb2b914760b06dc77 (patch)
tree1e4042211072a921d4b010b0491985a316e196c5 /source/blender/CMakeLists.txt
parent9b558b21161a7d6c021f5cc0e206a5c6aa7a4ada (diff)
Added new CMake build option, WITH_YAFRAY. Set to disabled by default.
Diffstat (limited to 'source/blender/CMakeLists.txt')
-rw-r--r--source/blender/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt
index 47688b67537..4caeebbd6a8 100644
--- a/source/blender/CMakeLists.txt
+++ b/source/blender/CMakeLists.txt
@@ -24,7 +24,7 @@
#
# ***** END GPL LICENSE BLOCK *****
-SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna radiosity readblenfile render yafray)
+SUBDIRS(windowmanager editors avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna makesrna radiosity readblenfile render)
IF(WITH_INTERNATIONAL)
SUBDIRS(ftfont)
@@ -44,4 +44,8 @@ ENDIF(WITH_QUICKTIME)
IF(WITH_PYTHON)
SUBDIRS(python)
-ENDIF(WITH_PYTHON) \ No newline at end of file
+ENDIF(WITH_PYTHON)
+
+IF(WITH_YAFRAY)
+ SUBDIRS(yafray)
+ENDIF(WITH_YAFRAY)