diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2020-09-15 20:55:40 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2020-09-15 20:55:40 +0900 |
commit | 6969cf036e866b88a5d6ed88d876ced85486c5a9 (patch) | |
tree | 020d8bd19ebf2b9b41af665bdadba9de3b9eac4b | |
parent | ee4eb0027c01f888e2e300a54f6d87996b3d3957 (diff) | |
download | portable-6969cf036e866b88a5d6ed88d876ced85486c5a9.tar.gz portable-6969cf036e866b88a5d6ed88d876ced85486c5a9.tar.bz2 portable-6969cf036e866b88a5d6ed88d876ced85486c5a9.zip |
Fix regress build
-rw-r--r-- | tests/CMakeLists.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5628430..89e670f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -124,10 +124,12 @@ if(NOT BUILD_SHARED_LIBS) | |||
124 | add_test(cipher_list cipher_list) | 124 | add_test(cipher_list cipher_list) |
125 | endif() | 125 | endif() |
126 | 126 | ||
127 | # cipherstest | 127 | if(NOT BUILD_SHARED_LIBS) |
128 | add_executable(cipherstest cipherstest.c) | 128 | # cipherstest |
129 | target_link_libraries(cipherstest ${OPENSSL_LIBS}) | 129 | add_executable(cipherstest cipherstest.c) |
130 | add_test(cipherstest cipherstest) | 130 | target_link_libraries(cipherstest ${OPENSSL_LIBS}) |
131 | add_test(cipherstest cipherstest) | ||
132 | endif() | ||
131 | 133 | ||
132 | # clienttest | 134 | # clienttest |
133 | # disabled | 135 | # disabled |