mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
8 lines
331 B
CMake
8 lines
331 B
CMake
set(kquitapp_SRCS kquitapp.cpp)
|
|
|
|
set(kquitapp_OUTPUT_NAME kquitapp)
|
|
add_executable(kquitapp_executable ${kquitapp_SRCS})
|
|
set_target_properties(kquitapp_executable PROPERTIES OUTPUT_NAME kquitapp)
|
|
target_link_libraries(kquitapp_executable ${KDE4_KDECORE_LIBS})
|
|
|
|
install(TARGETS kquitapp_executable ${INSTALL_TARGETS_DEFAULT_ARGS})
|