aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkartaris <rust768@gmail.com>2021-08-19 09:30:49 +0300
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>2021-08-20 16:22:58 +0300
commit759caad8600bab0e4c8e6639a32fd3e6c0cac856 (patch)
treea20540da0e618cfdf5be48438322c5e93b35cead
parent7ef27e2d62a45c94a462f6c08f4fdda70c41944c (diff)
downloadgost-engine-759caad8600bab0e4c8e6639a32fd3e6c0cac856.zip
gost-engine-759caad8600bab0e4c8e6639a32fd3e6c0cac856.tar.gz
gost-engine-759caad8600bab0e4c8e6639a32fd3e6c0cac856.tar.bz2
Dropped unnecessary libs
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index afd4b00..ad7457d 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 gost_core)
+target_link_libraries(test_curves gost_engine)
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 gost_core OpenSSL::Crypto)
+target_link_libraries(test_context gost_engine)
add_test(NAME context
COMMAND test_context)
add_executable(test_grasshopper test_grasshopper.c)
-target_link_libraries(test_grasshopper gost_engine gost_core OpenSSL::Crypto)
+target_link_libraries(test_grasshopper gost_engine)
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 gost_core)
+target_link_libraries(test_keyexpimp gost_engine)
add_test(NAME keyexpimp
COMMAND test_keyexpimp)