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:
authorThomas Dinges <blender@dingto.org>2014-01-21 00:12:28 +0400
committerThomas Dinges <blender@dingto.org>2014-01-21 00:12:28 +0400
commitfd0b104f706976204ffa978f76faf85378b1b977 (patch)
tree609c39015901af3e97578d9fec410d69d568d418 /intern/cycles/CMakeLists.txt
parent21264f89ac7183bf188bf077c39852a843877aa9 (diff)
Cycles Standalone: GUI flag was not passed correctly to the code, own mistake when I added the GUI build option.
Diffstat (limited to 'intern/cycles/CMakeLists.txt')
-rw-r--r--intern/cycles/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/cycles/CMakeLists.txt b/intern/cycles/CMakeLists.txt
index 3b1c66ad712..16d5ffda889 100644
--- a/intern/cycles/CMakeLists.txt
+++ b/intern/cycles/CMakeLists.txt
@@ -63,6 +63,10 @@ if(WITH_CYCLES_NETWORK)
add_definitions(-DWITH_NETWORK)
endif()
+if(WITH_CYCLES_STANDALONE_GUI)
+ add_definitions(-DWITH_CYCLES_STANDALONE_GUI)
+endif()
+
if(WITH_CYCLES_PTEX)
add_definitions(-DWITH_PTEX)
endif()