mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
29 lines
603 B
CMake
29 lines
603 B
CMake
set(libkcups_SRCS
|
|
KIppRequest.cpp
|
|
KCupsPasswordDialog.cpp
|
|
KCupsConnection.cpp
|
|
KCupsJob.cpp
|
|
KCupsPrinter.cpp
|
|
KCupsServer.cpp
|
|
KCupsRequest.cpp
|
|
ClassListWidget.cpp
|
|
PPDModel.cpp
|
|
SelectMakeModel.cpp
|
|
NoSelectionRectDelegate.cpp
|
|
PrinterModel.cpp
|
|
PrinterSortFilterModel.cpp
|
|
JobModel.cpp
|
|
JobSortFilterModel.cpp
|
|
)
|
|
|
|
kde4_add_ui_files(libkcups_SRCS
|
|
SelectMakeModel.ui
|
|
)
|
|
|
|
kde4_add_library(kcupslib SHARED ${libkcups_SRCS})
|
|
target_link_libraries(kcupslib
|
|
${KDE4_KIO_LIBS}
|
|
${CUPS_LIB}
|
|
)
|
|
|
|
install(TARGETS kcupslib ${INSTALL_TARGETS_DEFAULT_ARGS})
|