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:
authorDalai Felinto <dfelinto@gmail.com>2017-07-19 19:14:48 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-07-19 19:14:50 +0300
commit2382f979e206189b9efe14968771ef7f3bfba9dd (patch)
tree12871f78d17995eff018e0d3e277efc204124d98 /source/blender/blenloader/CMakeLists.txt
parent9f9244b6ae5edcd17668edccf707f1c84f29b0af (diff)
Doversion: Set Clay when opening "Blender Render" engine scenes
We get already enough reports of people complaining about crashes on edit mode unaware that they are in the non-supported Blender Render engine. Blender Render is going away, no reason to keep it around. Once we have a nice fallback on Eevee and fast file loading we can default to Eevee instead.
Diffstat (limited to 'source/blender/blenloader/CMakeLists.txt')
-rw-r--r--source/blender/blenloader/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenloader/CMakeLists.txt b/source/blender/blenloader/CMakeLists.txt
index 0a678cfe6f8..61d1aa18b3c 100644
--- a/source/blender/blenloader/CMakeLists.txt
+++ b/source/blender/blenloader/CMakeLists.txt
@@ -81,6 +81,10 @@ if(WITH_INTERNATIONAL)
add_definitions(-DWITH_INTERNATIONAL)
endif()
+if(WITH_CLAY_ENGINE)
+ add_definitions(-DWITH_CLAY_ENGINE)
+endif()
+
if(WITH_CODEC_FFMPEG)
add_definitions(-DWITH_FFMPEG)
endif()