From 9345391895affb81811a2b3e4eed4dad83b45696 Mon Sep 17 00:00:00 2001 From: bergmann Date: Thu, 28 Nov 2019 13:15:15 +0100 Subject: [PATCH] * Do not print warning if GTest is not found within CMake --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 21c71db..4c3d41d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -10,7 +10,7 @@ Find_Package ( Sanitizers QUIET ) # Test ############################################################################################ -Find_Package ( GTest ) +Find_Package ( GTest QUIET ) If ( NOT "${GTest_FOUND}" ) Return ( ) EndIf ( )