mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
19 lines
335 B
CMake
19 lines
335 B
CMake
find_package(KDE4Internal REQUIRED)
|
|
|
|
set(queuemanager_SRCS
|
|
main.cpp
|
|
PrintQueue.cpp
|
|
PrintQueueUi.cpp
|
|
PrintQueueUi.ui
|
|
)
|
|
|
|
add_executable(kde-print-queue
|
|
${queuemanager_SRCS}
|
|
)
|
|
|
|
target_link_libraries(kde-print-queue
|
|
${KDE4_KDEUI_LIBS}
|
|
kcupslib
|
|
)
|
|
|
|
install(TARGETS kde-print-queue DESTINATION ${BIN_INSTALL_DIR})
|