diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-23 20:22:40 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-23 20:22:40 +0000 |
commit | cf21ddc3cce570e574364e841758b59c0f8e8e04 (patch) | |
tree | 9f79e4569bb2991b4de8c25dd23795126ac0914c /src/CMakeLists.txt | |
parent | f9c30e41d26594598abaa8315c4488b6c5ff38ea (diff) | |
download | tdevelop-cf21ddc3cce570e574364e841758b59c0f8e8e04.tar.gz tdevelop-cf21ddc3cce570e574364e841758b59c0f8e8e04.zip |
[kdevelop] initial cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1216516 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 00000000..21b1e75a --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,98 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( profiles ) +add_subdirectory( profileengine ) +add_subdirectory( newui ) +add_subdirectory( kconf_update ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/lib/interfaces + ${CMAKE_SOURCE_DIR}/lib/interfaces/extensions + ${CMAKE_SOURCE_DIR}/lib/interfaces/external + ${CMAKE_SOURCE_DIR}/lib/widgets + ${CMAKE_SOURCE_DIR}/lib/util + ${CMAKE_SOURCE_DIR}/src/profileengine/lib + ${CMAKE_SOURCE_DIR}/src/newui + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES + api.h core.h documentationpart.h editorproxy.h + generalinfowidget.h languageselectwidget.h + mainwindowshare.h partcontroller.h plugincontroller.h + projectmanager.h projectsession.h shellextension.h + splashscreen.h statusbar.h toplevel.h + ${CMAKE_CURRENT_BINARY_DIR}/generalinfowidgetbase.h + ${CMAKE_CURRENT_BINARY_DIR}/mimewarningdialog.h + ${CMAKE_CURRENT_BINARY_DIR}/settingswidget.h + simplemainwindow.h multibuffer.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/shell ) + + +##### other data ################################ + +install( FILES kdevelopui.rc eventsrc DESTINATION ${DATA_INSTALL_DIR}/kdevelop ) +install( FILES kdeveloprc kdevassistantrc DESTINATION ${CONFIG_INSTALL_DIR} ) +install( FILES kdevassistantui.rc DESTINATION ${DATA_INSTALL_DIR}/kdevassistant ) +install( FILES projectprofiles DESTINATION ${DATA_INSTALL_DIR}/kdevelop/profiles ) + + +##### kdevelop (executable) ##################### + +tde_add_executable( kdevelop + SOURCES + main.cpp kdevideextension.cpp settingswidget.ui + LINK kdevshell-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### kdevassistant (executable) ################ + +tde_add_executable( kdevassistant + SOURCES + main_assistant.cpp kdevassistantextension.cpp + LINK kdevshell-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### kdevshell (shared) ######################## + +tde_add_library( kdevshell SHARED AUTOMOC + SOURCES + api.cpp core.cpp documentationpart.cpp editorproxy.cpp + generalinfowidget.cpp generalinfowidgetbase.ui + languageselectwidget.cpp mainwindowshare.cpp + mimewarningdialog.ui multibuffer.cpp partcontroller.cpp + plugincontroller.cpp pluginselectdialog.cpp + pluginselectdialog.h pluginselectdialogbase.ui + projectmanager.cpp projectsession.cpp shellextension.cpp + simplemainwindow.cpp splashscreen.cpp statusbar.cpp + toplevel.cpp + VERSION 0.0.0 + LINK + kdevutil-static d-static kinterfacedesigner-static + profileengine-shared kdevelop-shared kdevwidgets-shared + DESTINATION ${LIB_INSTALL_DIR} +) |