]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
test_keyexpimp, test_grasshopper, test_context and test_curves need OpenSSL::Crypto
authorkartaris <rust768@gmail.com>
Thu, 19 Aug 2021 11:06:53 +0000 (14:06 +0300)
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>
Fri, 20 Aug 2021 13:22:58 +0000 (16:22 +0300)
CMakeLists.txt

index ad7457d38b95805663e292a7bea6840a126d145f..7826111441c803f288fc73b96835f7025647b057 100644 (file)
@@ -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)