diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2016-11-06 04:57:23 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2016-11-06 04:57:23 +0900 |
commit | 5f187770f36e5049f54a3c717e8c71e3c824e5ba (patch) | |
tree | f4da368b64440bb93944f5e0f7858aa26ccd6338 /tests/CMakeLists.txt | |
parent | e0a62cf201e7940e5d1dc350ff201afca49d648d (diff) | |
download | portable-5f187770f36e5049f54a3c717e8c71e3c824e5ba.tar.gz portable-5f187770f36e5049f54a3c717e8c71e3c824e5ba.tar.bz2 portable-5f187770f36e5049f54a3c717e8c71e3c824e5ba.zip |
Add curve25519 to portable
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r-- | tests/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7957235..2cc4c9b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -341,3 +341,8 @@ add_test(utf8test utf8test) | |||
341 | add_executable(verifytest verifytest.c) | 341 | add_executable(verifytest verifytest.c) |
342 | target_link_libraries(verifytest tls ${OPENSSL_LIBS}) | 342 | target_link_libraries(verifytest tls ${OPENSSL_LIBS}) |
343 | add_test(verifytest verifytest) | 343 | add_test(verifytest verifytest) |
344 | |||
345 | # x25519test | ||
346 | add_executable(x25519test x25519test.c) | ||
347 | target_link_libraries(x25519test ${OPENSSL_LIBS}) | ||
348 | add_test(x25519test x25519test) | ||