From a58b8df4a9c64fcfe206da6a17636c81edf0481d Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Thu, 16 Sep 2021 20:51:46 +0100 Subject: [PATCH] cmake: Link with WAYLAND_LIBRARIES or SDL gets sad --- src/xrt/compositor/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/compositor/CMakeLists.txt b/src/xrt/compositor/CMakeLists.txt index c62eeb0bb..30d65520f 100644 --- a/src/xrt/compositor/CMakeLists.txt +++ b/src/xrt/compositor/CMakeLists.txt @@ -217,7 +217,7 @@ if(XRT_FEATURE_COMPOSITOR_MAIN) if(XRT_HAVE_WAYLAND) target_include_directories(comp_main SYSTEM PRIVATE ${WL_PROTOS_DIR}) target_link_libraries(comp_main PRIVATE - ${WAYLAND_DEPS} + ${WAYLAND_DEPS} ${WAYLAND_LIBRARIES} ) endif() if(XRT_HAVE_XCB)