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>2016-01-04 20:15:46 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-04 20:16:14 +0300
commit0e5e407007ed05548c80d2d36232e2fa71f3639b (patch)
tree8073a26308e97d567f429372f75093f918190b8e /tests
parent353d0237bcee46ba8e9636a962229c8bc9d2d612 (diff)
Correct include directories for GTests
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/testing/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gtests/testing/CMakeLists.txt b/tests/gtests/testing/CMakeLists.txt
index 0e5da492ed2..796f975ea65 100644
--- a/tests/gtests/testing/CMakeLists.txt
+++ b/tests/gtests/testing/CMakeLists.txt
@@ -24,17 +24,17 @@
set(INC
.
..
- ../../../extern/libmv/third_party/gflags
+ ../../../extern/gflags/src
../../../extern/gtest/include
)
if(WIN32)
list(APPEND INC
- ../../../extern/libmv/third_party/glog/src/windows
+ ../../../extern/glog/src/windows
)
else()
list(APPEND INC
- ../../../extern/libmv/third_party/glog/src
+ ../../../extern/glog/src
)
endif()