mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
11 lines
298 B
CMake
11 lines
298 B
CMake
set(ksystraycmd_SRCS ksystraycmd.cpp main.cpp )
|
|
|
|
|
|
add_executable(ksystraycmd ${ksystraycmd_SRCS})
|
|
|
|
target_link_libraries(ksystraycmd ${KDE4_KDEUI_LIBS})
|
|
if (Q_WS_X11)
|
|
target_link_libraries(ksystraycmd ${X11_X11_LIB})
|
|
endif (Q_WS_X11)
|
|
|
|
install(TARGETS ksystraycmd ${INSTALL_TARGETS_DEFAULT_ARGS})
|