summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-07-15 17:58:48 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-07-15 17:58:48 +0000
commitae330137b0b70f2d1a3f704c1bd0758ca4929830 (patch)
tree0bbfd189987a0227e534f69db13b8873c52715f5
parentCMake: fix wrong variable added in c666dd26 (diff)
downloadinkscape-ae330137b0b70f2d1a3f704c1bd0758ca4929830.tar.gz
inkscape-ae330137b0b70f2d1a3f704c1bd0758ca4929830.zip
cmake: fix package name 'gtest' -> 'GTest'
(lookup of FidGTest.cmake is apparently case sensitive)
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1940fbbf7..e3bd4edb1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -99,7 +99,7 @@ option(ENABLE_BINRELOC "Enable relocatable binaries" OFF)
# -----------------------------------------------------------------------------
# Test Harness
# -----------------------------------------------------------------------------
-find_package(gtest) # gtest 1.8.0 and later already include gmock
+find_package(GTest) # gtest 1.8.0 and later already include gmock
if(GTEST_FOUND AND EXISTS "${GTEST_INCLUDE_DIR}/gmock" AND IS_DIRECTORY "${GTEST_INCLUDE_DIR}/gmock")
set(GMOCK_PRESENT ON)
else()