diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-20 21:45:39 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-21 20:57:03 +0200 |
commit | 38e4b9017a32ff80d433611ebf69dffd41c1e0ff (patch) | |
tree | db260ad90ba18d8aa91f4c2c66b688ad1ec66ee3 | |
parent | bbe290180e77c44819d9cb711e573ce344e34f30 (diff) | |
download | ayatana-ido-38e4b9017a32ff80d433611ebf69dffd41c1e0ff.tar.gz ayatana-ido-38e4b9017a32ff80d433611ebf69dffd41c1e0ff.tar.bz2 ayatana-ido-38e4b9017a32ff80d433611ebf69dffd41c1e0ff.zip |
CMakeLists.txt: Leave finding gtest.pc to GMock cmake module.
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9520765..165f2ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,11 +21,6 @@ endif() set(DEPS glib-2.0>=2.58 gtk+-3.0>=3.24) -if(NOT DISABLE_TESTS) - # We also need gcovr and lcov - set(DEPS ${DEPS} gtest>=1.8.1) -endif() - find_package (PkgConfig REQUIRED) pkg_check_modules(PROJECT_DEPS REQUIRED ${DEPS}) |