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:
authorCampbell Barton <ideasman42@gmail.com>2015-06-14 02:34:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-14 02:34:42 +0300
commit1e9348efdcc6b7179450dfa681a5300801f1b4d6 (patch)
tree48420c7e925a201c8224fb3a4e2fd057164e7ebd /CMakeLists.txt
parent424e5be0467aad70bf249ca24b566f8a2d4e8c56 (diff)
CMake: minor edits to lite config
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 176d13b86af..3144376dd80 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -654,6 +654,11 @@ endif()
# auto enable openimageio for cycles
if(WITH_CYCLES)
set(WITH_OPENIMAGEIO ON)
+
+ # auto enable llvm for cycles_osl
+ if(WITH_CYCLES_OSL)
+ set(WITH_LLVM ON CACHE BOOL "" FORCE)
+ endif()
endif()
# auto enable openimageio linking dependencies
@@ -662,11 +667,6 @@ if(WITH_OPENIMAGEIO)
set(WITH_IMAGE_TIFF ON)
endif()
-# auto enable llvm for cycles_osl
-if(WITH_CYCLES_OSL)
- set(WITH_LLVM ON CACHE BOOL "" FORCE)
-endif()
-
# don't store paths to libs for portable distribution
if(WITH_INSTALL_PORTABLE)
set(CMAKE_SKIP_BUILD_RPATH TRUE)