aboutsummaryrefslogtreecommitdiff
path: root/tests/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r--tests/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 005f651..e1e4a9c 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -2,6 +2,7 @@ add_definitions(-DLIBRESSL_CRYPTO_INTERNAL)
2 2
3include_directories( 3include_directories(
4 . 4 .
5 ../crypto/
5 ../crypto/asn1 6 ../crypto/asn1
6 ../crypto/bio 7 ../crypto/bio
7 ../crypto/bn 8 ../crypto/bn
@@ -293,6 +294,11 @@ add_executable(constraints constraints.c)
293target_link_libraries(constraints ${OPENSSL_TEST_LIBS}) 294target_link_libraries(constraints ${OPENSSL_TEST_LIBS})
294add_test(constraints constraints) 295add_test(constraints constraints)
295 296
297# crypto_test
298add_executable(crypto_test crypto_test.c)
299target_link_libraries(crypto_test ${OPENSSL_TEST_LIBS})
300add_test(crypto_test crypto_test)
301
296# cttest 302# cttest
297add_executable(cttest cttest.c) 303add_executable(cttest cttest.c)
298target_link_libraries(cttest ${OPENSSL_TEST_LIBS}) 304target_link_libraries(cttest ${OPENSSL_TEST_LIBS})