15 lines
348 B
Plaintext
15 lines
348 B
Plaintext
$NetBSD: patch-programs_test_CMakeLists.txt,v 1.1 2015/06/12 09:05:05 fhajny Exp $
|
|
|
|
Make OpenSSL optional.
|
|
|
|
--- programs/test/CMakeLists.txt.orig 2015-06-04 12:49:19.000000000 +0000
|
|
+++ programs/test/CMakeLists.txt
|
|
@@ -1,4 +1,6 @@
|
|
-FIND_PACKAGE(OpenSSL)
|
|
+if(ENABLE_TESTING)
|
|
+ FIND_PACKAGE(OpenSSL)
|
|
+endif(ENABLE_TESTING)
|
|
|
|
set(libs
|
|
mbedtls
|