From a3fc6754e084199108ca46d690e8a08f2be0e99b Mon Sep 17 00:00:00 2001 From: xiphon Date: Fri, 19 Jun 2020 21:50:42 +0000 Subject: [PATCH] cmake: fix x11 linking --- src/CMakeLists.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cc940e96..2027e2fd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -126,11 +126,6 @@ target_compile_definitions(monero-wallet-gui set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}") -if(X11_FOUND) - target_link_libraries(monero-wallet-gui ${X11_LIBRARIES} pthread dl xcb X11) -endif() - - if(INSTALL_VENDORED_LIBUNBOUND) set(UNBOUND_LIBRARY ${CMAKE_BINARY_DIR}/monero/external/unbound/libunbound.a) else() @@ -162,6 +157,10 @@ if(DEVICE_TREZOR_READY) target_link_libraries(monero-wallet-gui ${TREZOR_DEP_LIBS}) endif() +if(X11_FOUND) + target_link_libraries(monero-wallet-gui ${X11_LIBRARIES}) +endif() + if(WITH_SCANNER) target_link_libraries(monero-wallet-gui ${ZBAR_LIBRARIES}