diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-02-26 18:44:02 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-02-26 18:44:02 +0100 |
commit | 62ec1cdac6d6be67aea8bfaf51a48c243951b1a2 (patch) | |
tree | 6ac169eda39ae3b04e8b7198af2bdc2f1421e21b | |
parent | 4e0477899f07300bead912e7622c05fa8ef65588 (diff) | |
parent | 889c006f9fcc57889ccb7d10ebadcf53463ae24c (diff) | |
download | ayatana-ido-62ec1cdac6d6be67aea8bfaf51a48c243951b1a2.tar.gz ayatana-ido-62ec1cdac6d6be67aea8bfaf51a48c243951b1a2.tar.bz2 ayatana-ido-62ec1cdac6d6be67aea8bfaf51a48c243951b1a2.zip |
Merge branch 'JamiKettunen-modern-gtest'
Attributes GH PR #63: https://github.com/AyatanaIndicators/ayatana-ido/pull/63
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bc4295f..7bbc464 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) # Options -option(ENABLE_TESTS "Enable all tests and checks" OFF) +option(ENABLE_TESTS "Enable all tests and checks" ON) option(ENABLE_COVERAGE "Enable coverage reports (includes enabling all tests and checks)" OFF) option(ENABLE_WERROR "Treat all build warnings as errors" OFF) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 74a258f..28c5727 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(GMock) +find_package(GTest REQUIRED) # gtest-menuitems |