From adfe8064d229ca3cbfbb1b04f8e7293083ba8e24 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 21 Oct 2025 02:51:37 +0000 Subject: [PATCH] dont forget the libraries :) Signed-off-by: lizzie --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35c15af79d..e593bf476e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -747,6 +747,9 @@ elseif (WIN32) # PSAPI is the Process Status API set(PLATFORM_LIBRARIES ${PLATFORM_LIBRARIES} psapi imm32 version) endif() +elseif (PLATFORM_HAIKU) + # Haiku is so special :) + set(PLATFORM_LIBRARIES bsd network) elseif (CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") set(PLATFORM_LIBRARIES rt) endif()