From 2e367fb052b777a51f4648ae77abe92473a90514 Mon Sep 17 00:00:00 2001 From: Mystro256 Date: Thu, 3 Mar 2016 22:55:44 -0500 Subject: [PATCH] Add option to use shared gtest library if available --- CMakeLists.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2538993c5..13b8424be3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,7 @@ project(dolphin-emu) option(USE_EGL "Enables EGL OpenGL Interface" OFF) option(TRY_X11 "Enables X11 Support" ON) option(USE_SHARED_ENET "Use shared libenet if found rather than Dolphin's soon-to-compatibly-diverge version" OFF) +option(USE_SHARED_GTEST "Use shared gtest library if found" OFF) option(USE_UPNP "Enables UPnP port mapping support" ON) option(DISABLE_WX "Disable wxWidgets (use Qt or CLI interface)" OFF) option(ENABLE_QT2 "Enable Qt2 (use the other experimental Qt interface)" OFF) @@ -906,8 +907,15 @@ include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common") ######################################## # Unit testing. # -include_directories(Externals/gtest/include) -add_subdirectory(Externals/gtest) +include(FindGTest) +if(GTEST_FOUND AND USE_SHARED_GTEST) + message("Using shared gtest") + include_directories(${GTEST_INCLUDE_DIRS}) +else() + message("Using static gtest from Externals") + include_directories(Externals/gtest/include) + add_subdirectory(Externals/gtest) +endif(GTEST_FOUND) enable_testing() add_custom_target(unittests)