You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
598 B
21 lines
598 B
set(KSMSERVER_LOGOUT_GREETER_SRCS main.cpp ../shutdowndlg.cpp ../ksmserver_debug.cpp) |
|
add_executable(ksmserver-logout-greeter ${KSMSERVER_LOGOUT_GREETER_SRCS}) |
|
target_link_libraries(ksmserver-logout-greeter |
|
PW::KWorkspace |
|
Qt5::Widgets |
|
Qt5::Quick |
|
Qt5::X11Extras |
|
KF5::Declarative |
|
KF5::IconThemes |
|
KF5::I18n |
|
KF5::Package |
|
KF5::QuickAddons |
|
KF5::KDELibs4Support # Solid/PowerManagement |
|
KF5::WaylandClient |
|
${X11_LIBRARIES} |
|
) |
|
install(TARGETS ksmserver-logout-greeter DESTINATION ${KDE_INSTALL_LIBEXECDIR}) |
|
|
|
if(BUILD_TESTING) |
|
add_subdirectory(tests) |
|
endif()
|
|
|