commit | 92eeea4627e2fbf5b5b9e6a67789b7d3dabbfca2 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 03 15:10:33 2012 +0000 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 03 15:10:33 2012 +0000 |
tree | 3bbf7928f0fc394b17dd6d1172c1238e5466cc42 | |
parent | 2770fbd651918f64881339e162edbbd261624a59 [diff] |
- Modified CMakeLists to support zlib
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 494fd2b..3ff4f0b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt
@@ -6,6 +6,10 @@ set(libs ${libs} pkcs11-helper) endif(USE_PKCS11_HELPER_LIBRARY) +if(ENABLE_ZLIB_SUPPORT) + set(libs ${libs} ${ZLIB_LIBRARIES}) +endif(ENABLE_ZLIB_SUPPORT) + function(add_test_suite suite_name) if(ARGV1) set(data_name ${ARGV1})