From e8a2bc9e4337add7ae1383f7b5476ae0fb9549ad Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Thu, 17 Aug 2023 14:00:00 +0200 Subject: [PATCH] Fix CMake scripts for FreeBSD This fixes linking of the XCB library on FreeBSD. --- src/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8224644..512aee1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -85,7 +85,12 @@ target_link_libraries(${library_name} PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) if (UNIX AND NOT APPLE) - target_link_libraries(${library_name} PUBLIC xcb) + if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") + find_package(X11 REQUIRED) + target_link_libraries(${library_name} PUBLIC X11::xcb) + else() + target_link_libraries(${library_name} PUBLIC xcb) + endif() endif() set_target_properties(${library_name} PROPERTIES AUTOMOC ON