1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-09 16:58:16 +03:00

missing dependence libSM

This commit is contained in:
Johan Smith Agudelo Rodriguez 2017-06-20 17:21:20 -05:00
parent a3fb857081
commit 048191e1d5

View File

@ -32,6 +32,12 @@ if(X11_FOUND)
find_package(XCB MODULE REQUIRED COMPONENTS XCB RANDR EVENT)
set_package_properties(XCB PROPERTIES TYPE REQUIRED)
find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS X11Extras)
if(NOT X11_SM_FOUND)
message(FATAL_ERROR "\nThe X11 Session Management (SM) development package could not be found.
\nPlease install libSM.\n")
endif(NOT X11_SM_FOUND)
endif()
if(X11_FOUND AND XCB_XCB_FOUND)