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>2012-06-23 17:42:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-23 17:42:14 +0400
commit263be14811c65ee67646308b116c6afd8f817384 (patch)
tree865b7542c21bcdd6030d8209d9a264447dc2c338 /intern/cycles/cmake
parent79fb3311a3397ddf6b1a3e0e10b4dc0f4fee4d70 (diff)
rename WITH_BUILTIN_GLEW, WITH_SYSTEM_GLEW & negate.
Diffstat (limited to 'intern/cycles/cmake')
-rw-r--r--intern/cycles/cmake/external_libs.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/cmake/external_libs.cmake b/intern/cycles/cmake/external_libs.cmake
index 7d12e261068..23a919530f9 100644
--- a/intern/cycles/cmake/external_libs.cmake
+++ b/intern/cycles/cmake/external_libs.cmake
@@ -11,10 +11,10 @@ if(WITH_CYCLES_TEST)
include_directories(${GLUT_INCLUDE_DIR})
endif()
-if(WITH_BUILTIN_GLEW)
- set(CYCLES_GLEW_LIBRARY extern_glew)
-else()
+if(WITH_SYSTEM_GLEW)
set(CYCLES_GLEW_LIBRARY ${GLEW_LIBRARY})
+else()
+ set(CYCLES_GLEW_LIBRARY extern_glew)
endif()
###########################################################################