aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkartaris <rust768@gmail.com>2021-08-19 14:06:53 +0300
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>2021-08-20 16:22:58 +0300
commitb6acd575ec9f16b45b26f88d3f2585ab0716f234 (patch)
treed0bc9ac28717afc75e775e5f4106c24c76431937
parent672de3d14873849c4d84a1c71f723c848fa09521 (diff)
downloadgost-engine-b6acd575ec9f16b45b26f88d3f2585ab0716f234.zip
gost-engine-b6acd575ec9f16b45b26f88d3f2585ab0716f234.tar.gz
gost-engine-b6acd575ec9f16b45b26f88d3f2585ab0716f234.tar.bz2
test_keyexpimp, test_grasshopper, test_context and test_curves need OpenSSL::Crypto
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ad7457d..7826111 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -188,7 +188,7 @@ add_test(NAME digest
COMMAND test_digest)
add_executable(test_curves test_curves.c)
-target_link_libraries(test_curves gost_engine)
+target_link_libraries(test_curves gost_engine OpenSSL::Crypto)
add_test(NAME curves
COMMAND test_curves)
@@ -208,18 +208,18 @@ add_test(NAME TLS
COMMAND test_tls)
add_executable(test_context test_context.c)
-target_link_libraries(test_context gost_engine)
+target_link_libraries(test_context gost_engine OpenSSL::Crypto)
add_test(NAME context
COMMAND test_context)
add_executable(test_grasshopper test_grasshopper.c)
-target_link_libraries(test_grasshopper gost_engine)
+target_link_libraries(test_grasshopper gost_engine OpenSSL::Crypto)
add_test(NAME grasshopper
COMMAND test_grasshopper)
add_executable(test_keyexpimp test_keyexpimp.c)
#target_compile_definitions(test_keyexpimp PUBLIC -DOPENSSL_LOAD_CONF)
-target_link_libraries(test_keyexpimp gost_engine)
+target_link_libraries(test_keyexpimp gost_engine OpenSSL::Crypto)
add_test(NAME keyexpimp
COMMAND test_keyexpimp)