Add curve25519 to portable

This commit is contained in:
kinichiro
2016-11-06 04:57:23 +09:00
parent e0a62cf201
commit 5f187770f3
5 changed files with 19 additions and 1 deletions

View File

@@ -341,3 +341,8 @@ add_test(utf8test utf8test)
add_executable(verifytest verifytest.c)
target_link_libraries(verifytest tls ${OPENSSL_LIBS})
add_test(verifytest verifytest)
# x25519test
add_executable(x25519test x25519test.c)
target_link_libraries(x25519test ${OPENSSL_LIBS})
add_test(x25519test x25519test)

View File

@@ -338,3 +338,8 @@ utf8test_SOURCES = utf8test.c
TESTS += verifytest
check_PROGRAMS += verifytest
verifytest_SOURCES = verifytest.c
# x25519test
TESTS += x25519test
check_PROGRAMS += x25519test
x25519test_SOURCES = x25519test.c