[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51125] trunk/blender/CMakeLists.txt: Fix for WITH_LLVM cmake option: When using WITH_CYCLES_OSL this option is forced ON, but this change was not cached yet.

Lukas Toenne lukas.toenne at googlemail.com
Sat Oct 6 20:40:05 CEST 2012


Revision: 51125
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51125
Author:   lukastoenne
Date:     2012-10-06 18:40:05 +0000 (Sat, 06 Oct 2012)
Log Message:
-----------
Fix for WITH_LLVM cmake option: When using WITH_CYCLES_OSL this option is forced ON, but this change was not cached yet. Thanks to Jens Verwiebe for providing this fix.

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2012-10-06 18:37:48 UTC (rev 51124)
+++ trunk/blender/CMakeLists.txt	2012-10-06 18:40:05 UTC (rev 51125)
@@ -376,7 +376,7 @@
 
 # auto enable llvm for cycles_osl
 if(WITH_CYCLES_OSL)
-	set(WITH_LLVM ON)
+	set(WITH_LLVM ON CACHE BOOL "ON" FORCE)
 endif()
 
 # don't store paths to libs for portable distribution




More information about the Bf-blender-cvs mailing list