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
path: root/tests
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-04-21 15:26:25 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-04-21 15:36:34 +0300
commite4ab70da862b5852a6e3f7bab489bed8c3b18193 (patch)
tree065e30e1411348dc868fef3621c235e95a651d8d /tests
parent9c02990ac13a25968d8ec15da15129617d3f25d0 (diff)
CMake: Add option to build against system-wide Glog
Similar to previous commit for Gflags.
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/testing/CMakeLists.txt11
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/gtests/testing/CMakeLists.txt b/tests/gtests/testing/CMakeLists.txt
index defa51df664..95ac59e6dce 100644
--- a/tests/gtests/testing/CMakeLists.txt
+++ b/tests/gtests/testing/CMakeLists.txt
@@ -24,20 +24,11 @@
set(INC
.
..
+ ${GLOG_INCLUDE_DIRS}
${GFLAGS_INCLUDE_DIRS}
../../../extern/gtest/include
)
-if(WIN32)
- list(APPEND INC
- ../../../extern/glog/src/windows
- )
-else()
- list(APPEND INC
- ../../../extern/glog/src
- )
-endif()
-
set(INC_SYS
)