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 /languages/pascal/compiler | |
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 'languages/pascal/compiler')
-rw-r--r-- | languages/pascal/compiler/CMakeLists.txt | 13 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/CMakeLists.txt | 37 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/CMakeLists.txt | 37 |
3 files changed, 87 insertions, 0 deletions
diff --git a/languages/pascal/compiler/CMakeLists.txt b/languages/pascal/compiler/CMakeLists.txt new file mode 100644 index 00000000..56f84b6d --- /dev/null +++ b/languages/pascal/compiler/CMakeLists.txt @@ -0,0 +1,13 @@ +################################################# +# +# (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( dccoptions ) +add_subdirectory( fpcoptions ) diff --git a/languages/pascal/compiler/dccoptions/CMakeLists.txt b/languages/pascal/compiler/dccoptions/CMakeLists.txt new file mode 100644 index 00000000..ae6c6388 --- /dev/null +++ b/languages/pascal/compiler/dccoptions/CMakeLists.txt @@ -0,0 +1,37 @@ +################################################# +# +# (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_SOURCE_DIR}/lib/interfaces + ${CMAKE_SOURCE_DIR}/lib/interfaces/extras + ${CMAKE_SOURCE_DIR}/lib/widgets + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kdevdccoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### libkdevdccoptions (module) ################ + +tde_add_kpart( libkdevdccoptions AUTOMOC + SOURCES dccoptionsplugin.cpp optiontabs.cpp + LINK kdevwidgets-shared kdevextras-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/languages/pascal/compiler/fpcoptions/CMakeLists.txt b/languages/pascal/compiler/fpcoptions/CMakeLists.txt new file mode 100644 index 00000000..12c9ef89 --- /dev/null +++ b/languages/pascal/compiler/fpcoptions/CMakeLists.txt @@ -0,0 +1,37 @@ +################################################# +# +# (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_SOURCE_DIR}/lib/interfaces + ${CMAKE_SOURCE_DIR}/lib/interfaces/extras + ${CMAKE_SOURCE_DIR}/lib/widgets + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kdevfpcoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### libkdevfpcoptions (module) ################ + +tde_add_kpart( libkdevfpcoptions AUTOMOC + SOURCES fpcoptionsplugin.cpp optiontabs.cpp + LINK kdevwidgets-shared kdevextras-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |