kde-workspace/ksplash/ksplashqml/CMakeLists.txt

21 lines
369 B
Text
Raw Normal View History

2014-11-13 19:30:51 +02:00
project(ksplashqml)
add_subdirectory(themes)
set(ksplashqml_SRCS
main.cpp
SplashApp.cpp
SplashWindow.cpp
)
2015-09-01 04:37:19 +03:00
add_executable(ksplashqml ${ksplashqml_SRCS})
2014-11-13 19:30:51 +02:00
target_link_libraries(ksplashqml
${X11_LIBRARIES}
${QT_QTCORE_LIBRARY}
${QT_QTDECLARATIVE_LIBRARY}
${QT_QTGUI_LIBRARY}
)
install(TARGETS ksplashqml ${INSTALL_TARGETS_DEFAULT_ARGS})