From d007711eb694d043b590e0728d9c0a73e9b51449 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 13 Mar 2016 04:02:27 +0000 Subject: [PATCH] CMake: fix warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b822ca62c..92f112d67c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -915,7 +915,7 @@ else() message("Using static gtest from Externals") include_directories(Externals/gtest/include) add_subdirectory(Externals/gtest) -endif(GTEST_FOUND) +endif() enable_testing() add_custom_target(unittests)