aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-20 21:27:05 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-21 20:57:03 +0200
commitbbe290180e77c44819d9cb711e573ce344e34f30 (patch)
tree4f1819f016047d28d5a5fe78d97d8492a9cd857a
parentf308bf10515467a754d592c7b497f8fd0fd2d656 (diff)
downloadayatana-ido-bbe290180e77c44819d9cb711e573ce344e34f30.tar.gz
ayatana-ido-bbe290180e77c44819d9cb711e573ce344e34f30.tar.bz2
ayatana-ido-bbe290180e77c44819d9cb711e573ce344e34f30.zip
CMakeLists.txt: Tolerate older versions of GLib-2.0 and GoogleTest. Support building on Debian 10.
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 459746c..9520765 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,11 +19,11 @@ endif()
# Check for prerequisites
-set(DEPS glib-2.0>=2.64 gtk+-3.0>=3.24)
+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.10)
+ set(DEPS ${DEPS} gtest>=1.8.1)
endif()
find_package (PkgConfig REQUIRED)