diff options
Diffstat (limited to 'kbabel/commonui')
-rw-r--r-- | kbabel/commonui/CMakeLists.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kbabel/commonui/CMakeLists.txt b/kbabel/commonui/CMakeLists.txt new file mode 100644 index 00000000..a53ee5f7 --- /dev/null +++ b/kbabel/commonui/CMakeLists.txt @@ -0,0 +1,41 @@ +################################################# +# +# (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_CURRENT_BINARY_DIR}/../common + ${CMAKE_CURRENT_SOURCE_DIR}/../common + ${CMAKE_CURRENT_SOURCE_DIR}/../kbabeldict + ${CMAKE_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + + +##### other data ################################ + +install( FILES + kbabel_validator.desktop kbabel_tool.desktop + DESTINATION ${SERVICETYPES_INSTALL_DIR} ) + + + +##### kbabelcommonui (static) ################### + +tde_add_library( kbabelcommonui STATIC_PIC AUTOMOC + SOURCES + klisteditor.ui context.cpp kactionselector.cpp + toolselectionwidget.cpp toolaction.cpp finddialog.cpp + roughtransdlg.cpp projectprefwidgets.cpp projectpref.cpp + projectwizard.cpp projectwizardwidget.ui projectwizardwidget2.ui + cmdedit.cpp diffpreferences.ui + DEPENDENCIES kbabelcommon-shared +) |