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:
authorMitchell Stokes <mogurijin@gmail.com>2012-11-08 09:50:02 +0400
committerMitchell Stokes <mogurijin@gmail.com>2012-11-08 09:50:02 +0400
commitcb41fbef8e8b3050dab363af6db241cf6903fa07 (patch)
tree9f314ba988b32d94e4d4cb85e7c4441de2591de5 /CMakeLists.txt
parent718550878b847dc4779250be9b9776b89d32e2ef (diff)
CMake: Since Audaspace now requires Boost, auto enable Boost if WITH_AUDASPACE is enabled.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c33f4384a76..d8ae92d59d1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -372,8 +372,8 @@ if(WITH_CYCLES)
set(WITH_OPENIMAGEIO ON)
endif()
-# auto enable boost for cycles and booleans
-if(WITH_CYCLES OR WITH_MOD_BOOLEAN)
+# auto enable boost for cycles, booleans or audaspace
+if(WITH_CYCLES OR WITH_MOD_BOOLEAN OR WITH_AUDASPACE)
set(WITH_BOOST ON)
endif()