From e24b16a4f4ff669899c243ac46f1a2a9a08dcb08 Mon Sep 17 00:00:00 2001 From: Songling Han Date: Sat, 21 Sep 2024 09:36:15 +0000 Subject: [PATCH] fix build for tests Signed-off-by: Songling Han --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index eb297a804..8b6851c47 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -30,7 +30,7 @@ if(NOT WIN32) endif() # List oqs-internal after oqs so that oqs has linking precedence. -set(TEST_DEPS oqs oqs-internal ${LIBM}) +set(TEST_DEPS oqs oqs-internal ${LIBM} OpenSSL::Crypto) if(OQS_USE_PTHREADS) set(TEST_DEPS ${TEST_DEPS} Threads::Threads) endif()