Added new CMake build option, WITH_YAFRAY. Set to disabled by default.

This commit is contained in:
Nicholas Bishop
2009-01-17 03:51:13 +00:00
parent 9b558b2116
commit ee180ff5ac
3 changed files with 12 additions and 2 deletions

View File

@@ -66,6 +66,7 @@ OPTION(WITH_PYTHON "Enable Embedded Python API" ON)
OPTION(WITH_OPENAL "Enable OpenAL Support (http://www.openal.org)" ON)
OPTION(WITH_OPENMP "Enable OpenMP (has to be supported by the compiler)" OFF)
OPTION(WITH_WEBPLUGIN "Enable Web Plugin (Unix only)" OFF)
OPTION(WITH_YAFRAY "Enable Yafray (Renderer)" OFF)
IF(NOT WITH_GAMEENGINE AND WITH_PLAYER)
MESSAGE("WARNING: WITH_PLAYER needs WITH_GAMEENGINE")

View File

@@ -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)
ENDIF(WITH_PYTHON)
IF(WITH_YAFRAY)
SUBDIRS(yafray)
ENDIF(WITH_YAFRAY)

View File

@@ -32,6 +32,11 @@ SET(INC
../quicktime ../include ../../kernel/gen_messaging ../yafray ../blenloader
)
IF(NOT WITH_YAFRAY)
ADD_DEFINITIONS(-DDISABLE_YAFRAY)
ENDIF(WITH_YAFRAY)
IF(WITH_OPENEXR)
ADD_DEFINITIONS(-DWITH_OPENEXR)
ENDIF(WITH_OPENEXR)