diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-03-23 14:23:16 +0100 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2023-03-24 14:29:57 +0800 |
commit | 0cfe349d618793baef5bb242310ec2b5dc5bb835 (patch) | |
tree | 954d04e28750a8feb91a7f1b2e2c93a8d3252c5c /CMakeLists.txt | |
parent | 6fe66613e4e8d1d0e0f17affaca621856dfe5084 (diff) | |
download | fork-ledger-0cfe349d618793baef5bb242310ec2b5dc5bb835.tar.gz fork-ledger-0cfe349d618793baef5bb242310ec2b5dc5bb835.tar.bz2 fork-ledger-0cfe349d618793baef5bb242310ec2b5dc5bb835.zip |
Bump required Gpgmepp version to 1.13.1
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 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}) |