From 38c8a96d997093d9ca0dc80a5233b22925459edc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Fri, 20 May 2016 21:37:30 +0200 Subject: [PATCH] Added missing REQUIRED flag in CMake file for tests. --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d78fd5f..a2c2ea7 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,7 +2,7 @@ set(target tests) file(GLOB core_sources "*.cpp") -find_package(GTest) +find_package(GTest REQUIRED) include_directories( ${GTEST_INCLUDE_DIRS}