Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > afbf95650f3b06a30139c74063748025 > files > 8

flightcrew-0.7.2-14.mga5.src.rpm

From d2f5f2e8919a09ac9f57d074661ed625a4bebfaa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan[at]danny.cz>
Date: Wed, 18 Jan 2012 20:42:27 +0100
Subject: [PATCH 08/11] don't build googlemock when NO_TEST_EXE is specified

---
 CMakeLists.txt |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 335f004..d8edc19 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,7 +66,9 @@ if( NOT ZLIB_FOUND )
     add_subdirectory( src/zlib )
 endif()
 add_subdirectory( src/zipios )
-add_subdirectory( src/googlemock )
+if( NOT NO_TEST_EXE )
+    add_subdirectory( src/googlemock )
+endif()
 add_subdirectory( src/FlightCrew )
 add_subdirectory( src/FlightCrew-cli )
 
-- 
1.7.7.4