aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2020-01-31 13:22:50 +0100
committerAndreas Schneider <asn@samba.org>2020-01-31 14:16:52 +0100
commit678fa2c414e10c7e3a7ee840536044af036342de (patch)
treec87dfe4de1a6b7f65eb28a1d3d8923fa9b577a6e
parentad58c0b68c9f174ed8411e64ea4f1ee0caa6c8ef (diff)
downloadpam_wrapper-678fa2c414e10c7e3a7ee840536044af036342de.tar.gz
pam_wrapper-678fa2c414e10c7e3a7ee840536044af036342de.tar.xz
pam_wrapper-678fa2c414e10c7e3a7ee840536044af036342de.zip
cmake: Look for cmocka 1.1.0 at least
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a69a908..7d9bb42 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,7 @@ add_subdirectory(src)
add_subdirectory(include)
if (UNIT_TESTING)
- find_package(CMocka REQUIRED)
+ find_package(CMocka 1.1.0 REQUIRED)
include(AddCMockaTest)
add_subdirectory(tests)
endif (UNIT_TESTING)