diff options
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fc2e0ea..f6892a59 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ set(Required_CMake_Version 3.16.2) set(Required_Boost_Version 1.72) set(Required_Python_Version 3.9) +set(Required_Gpgmepp_Version 1.13.1) cmake_minimum_required(VERSION ${Required_CMake_Version}) @@ -96,7 +97,7 @@ link_directories(${Boost_LIBRARY_DIRS}) # Crypto if (USE_GPGME) - find_package(Gpgmepp REQUIRED) + find_package(Gpgmepp ${Required_Gpgmepp_Version} REQUIRED) set(HAVE_GPGME 1) include_directories(SYSTEM ${Gpgmepp_INCLUDE_DIRS}) link_directories(${Gpgmepp_LIBRARY_DIRS}) @@ -68,6 +68,7 @@ Dependency | Version (or greater) [gettext] | 0.17 _optional_ [libedit] | 20090111-3.0 _optional_ [Python] | 3.9 _optional_ +[Gpgmepp] | 1.13.1 _optional_ [doxygen] | 1.5.7.1 _optional_, for `make docs` [graphviz] | 2.20.3 _optional_, for `make docs` [texinfo] | 4.13 _optional_, for `make docs` @@ -192,6 +193,7 @@ hack as much as you like, then send me a pull request via GitHub. [gettext]: https://www.gnu.org/software/gettext/ [libedit]: https://thrysoee.dk/editline/ [Python]: https://python.org +[Gpgmepp]: https://www.gnupg.org/related_software/gpgme/ [doxygen]: https://www.doxygen.org/ [graphviz]: https://graphviz.org/ [texinfo]: https://www.gnu.org/software/texinfo/ |