diff options
Diffstat (limited to 'certmanager/lib/ui/CMakeLists.txt')
-rw-r--r-- | certmanager/lib/ui/CMakeLists.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/certmanager/lib/ui/CMakeLists.txt b/certmanager/lib/ui/CMakeLists.txt new file mode 100644 index 000000000..61a46c6f8 --- /dev/null +++ b/certmanager/lib/ui/CMakeLists.txt @@ -0,0 +1,46 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/certmanager/lib + ${CMAKE_SOURCE_DIR}/libkdenetwork + ${CMAKE_SOURCE_DIR}/libkdepim + ${CMAKE_SOURCE_DIR}/libkpgp + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${GPGME_INCLUDE_DIRS} +) + + +##### headers ################################### + +install( FILES + kdhorizontalline.h messagebox.h progressbar.h + progressdialog.h keylistview.h keyselectiondialog.h + keyrequester.h passphrasedialog.h keyapprovaldialog.h + backendconfigwidget.h dnattributeorderconfigwidget.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kleo ) + + +##### kleopatra_ui (static) ##################### + +tde_add_library( kleopatra_ui STATIC_PIC AUTOMOC + SOURCES + kdhorizontalline.cpp messagebox.cpp progressbar.cpp + progressdialog.cpp keylistview.cpp keyselectiondialog.cpp + keyrequester.cpp passphrasedialog.cpp keyapprovaldialog.cpp + backendconfigwidget.cpp dnattributeorderconfigwidget.cpp + cryptoconfigmodule.cpp cryptoconfigdialog.cpp + directoryserviceswidgetbase.ui directoryserviceswidget.cpp + adddirectoryservicedialog.ui adddirectoryservicedialogimpl.cpp +) |