Added new CMake build option, WITH_YAFRAY. Set to disabled by default.
This commit is contained in:
@@ -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")
|
||||
|
@@ -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)
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user