From ae158f0e6dc787e2b6b98fe39e04d47600c6d2b1 Mon Sep 17 00:00:00 2001 From: 3405691582 Date: Mon, 15 Sep 2025 21:22:17 -0400 Subject: [PATCH] OpenBSD needs execinfo as well. --- Sources/Testing/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Testing/CMakeLists.txt b/Sources/Testing/CMakeLists.txt index 8fef166c7..a88dd4084 100644 --- a/Sources/Testing/CMakeLists.txt +++ b/Sources/Testing/CMakeLists.txt @@ -124,7 +124,8 @@ if(NOT APPLE) endif() target_link_libraries(Testing PUBLIC Foundation) - if (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") + if (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR + CMAKE_SYSTEM_NAME STREQUAL "OpenBSD") target_link_libraries(Testing PUBLIC execinfo) endif() endif()