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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-05-01 14:00:21 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-05-01 14:00:21 +0400
commit170f8c8c4109afb366bac0f385d9e2f59af6c8e2 (patch)
tree5a76e595f1b61524cadbd2ee1f99b9e49235a848 /intern/cycles/util/CMakeLists.txt
parente5d7a38a257b543ff44e823c29a12198e3817427 (diff)
Cycles: build without GLUT test app by default.
Diffstat (limited to 'intern/cycles/util/CMakeLists.txt')
-rw-r--r--intern/cycles/util/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/intern/cycles/util/CMakeLists.txt b/intern/cycles/util/CMakeLists.txt
index 4137c73a39a..380383e3146 100644
--- a/intern/cycles/util/CMakeLists.txt
+++ b/intern/cycles/util/CMakeLists.txt
@@ -13,8 +13,11 @@ SET(sources
util_string.cpp
util_system.cpp
util_time.cpp
- util_transform.cpp
- util_view.cpp)
+ util_transform.cpp)
+
+IF(WITH_CYCLES_TEST)
+ LIST(APPEND sources util_view.cpp)
+ENDIF()
SET(headers
util_algorithm.h