2022-06-02 16:31:24 +08:00
|
|
|
project(screensaver-capslock-helper)
|
2024-04-08 17:09:20 +08:00
|
|
|
|
2022-06-02 16:31:24 +08:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
|
|
|
set(bin_SRCS
|
|
|
|
${bin_SRCS}
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(screensaver-focus-helper ${bin_SRCS})
|
2024-04-08 17:09:20 +08:00
|
|
|
target_link_libraries(screensaver-focus-helper Qt5::Core Qt5::Widgets)
|
2022-06-02 16:31:24 +08:00
|
|
|
|
|
|
|
install(TARGETS
|
|
|
|
screensaver-focus-helper
|
|
|
|
DESTINATION lib/ukui-screensaver)
|