From 0507c68a0bf7c5faab60870da70416d8fb0e6c40 Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 12 May 2026 17:51:32 -0300 Subject: [PATCH] build: link log on test builds --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5b26ec..fa3985e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,6 +28,9 @@ FetchContent_Declare( ) # seallib config +if (TINYMITM_TEST) + set(SEALLIB_LOG ON CACHE BOOL "" FORCE) +endif() set(SEALLIB_EVENTS ON CACHE BOOL "" FORCE) FetchContent_GetProperties(seallib) FetchContent_MakeAvailable(seallib)