diff options
Diffstat (limited to 'lib/interfaces')
-rw-r--r-- | lib/interfaces/CMakeLists.txt | 61 | ||||
-rw-r--r-- | lib/interfaces/extensions/CMakeLists.txt | 54 | ||||
-rw-r--r-- | lib/interfaces/extensions/dcop/CMakeLists.txt | 34 | ||||
-rw-r--r-- | lib/interfaces/external/CMakeLists.txt | 30 | ||||
-rw-r--r-- | lib/interfaces/extras/CMakeLists.txt | 40 |
5 files changed, 219 insertions, 0 deletions
diff --git a/lib/interfaces/CMakeLists.txt b/lib/interfaces/CMakeLists.txt new file mode 100644 index 00000000..fac94870 --- /dev/null +++ b/lib/interfaces/CMakeLists.txt @@ -0,0 +1,61 @@ +################################################# +# +# (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( extensions ) +add_subdirectory( external ) +add_subdirectory( extras ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/lib/util + ${CMAKE_SOURCE_DIR}/lib/interfaces/external + ${CMAKE_SOURCE_DIR}/lib/cppparser + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + + +##### headers ################################### + +install( FILES + kdevlanguagesupport.h kdevmainwindow.h kdevpartcontroller.h + kdevplugin.h kdevproject.h kdevcore.h kdevcoderepository.h + codemodel.h codemodel_utils.h codemodel_treeparser.h + kdevgenericfactory.h kdevapi.h kdevdesignerintegration.h + kdevplugincontroller.h kdevplugininfo.h KDevCoreIface.h + KDevPartControllerIface.h katedocumentmanagerinterface.h + hashedstring.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/interfaces ) + +install( FILES + kdevelopproject.desktop kdeveloplanguagesupport.desktop + kdevelopplugin.desktop + DESTINATION ${SERVICETYPES_INSTALL_DIR} ) + + +##### kdevinterfaces (static) ################### + +tde_add_library( kdevinterfaces STATIC_PIC AUTOMOC + SOURCES + kdevcore.cpp kdevproject.cpp kdevlanguagesupport.cpp + kdevpartcontroller.cpp kdevapi.cpp KDevCoreIface.skel + kdevmainwindow.cpp KDevPartControllerIface.skel + kdevplugin.cpp kdevcoderepository.cpp + codemodel.cpp codemodel_treeparser.cpp + codemodel_utils.cpp kdevdesignerintegration.cpp + kdevplugincontroller.cpp kdevplugininfo.cpp + KDevCoreIface.cpp KDevPartControllerIface.cpp + katedocumentmanagerinterface.cpp + katedocumentmanagerinterface.skel kdevprojectiface.cpp + kdevprojectiface.skel kdevdesignerintegrationiface.cpp + kdevdesignerintegrationiface.skel hashedstring.cpp +) diff --git a/lib/interfaces/extensions/CMakeLists.txt b/lib/interfaces/extensions/CMakeLists.txt new file mode 100644 index 00000000..d7c9cbf1 --- /dev/null +++ b/lib/interfaces/extensions/CMakeLists.txt @@ -0,0 +1,54 @@ +################################################# +# +# (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( dcop ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/lib/interfaces + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + + +##### headers ################################### + +install( FILES + codebrowserfrontend.h kdevappfrontend.h kdevcreatefile.h + kdevdifffrontend.h kdevmakefrontend.h kdevquickopen.h + kdevsourceformatter.h kdevversioncontrol.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/interfaces/extensions ) + +install( FILES + kdevelopappfrontend.desktop kdevelopcodebrowserfrontend.desktop + kdevelopcreatefile.desktop kdevelopdifffrontend.desktop + kdevelopmakefrontend.desktop kdevelopquickopen.desktop + kdevelopsourceformatter.desktop kdevelopversioncontrol.desktop + DESTINATION ${SERVICETYPES_INSTALL_DIR} ) + + +##### kdevextensions (static) ################### + +add_custom_command( OUTPUT codebrowserfrontend.moc.cpp + COMMAND + ${TQT_TMOC_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/codebrowserfrontend.h -o codebrowserfrontend.moc.cpp + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/codebrowserfrontend.h ) + +add_custom_command( OUTPUT kdevversioncontrol.moc.cpp + COMMAND + ${TQT_TMOC_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/kdevversioncontrol.h -o kdevversioncontrol.moc.cpp + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/kdevversioncontrol.h ) + +tde_add_library( kdevextensions STATIC_PIC AUTOMOC + SOURCES + kdevappfrontend.cpp kdevappfrontend.cpp kdevmakefrontend.cpp + codebrowserfrontend.moc.cpp kdevversioncontrol.moc.cpp +) diff --git a/lib/interfaces/extensions/dcop/CMakeLists.txt b/lib/interfaces/extensions/dcop/CMakeLists.txt new file mode 100644 index 00000000..03e2d622 --- /dev/null +++ b/lib/interfaces/extensions/dcop/CMakeLists.txt @@ -0,0 +1,34 @@ +################################################# +# +# (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/extensions + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + + +##### headers ################################### + +install( FILES + KDevAppFrontendIface.h KDevMakeFrontendIface.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/interfaces/extensions/dcop ) + + +##### kdevdcopextensions (static) ############### + +tde_add_library( kdevdcopextensions STATIC_PIC + SOURCES + KDevAppFrontendIface.cpp KDevMakeFrontendIface.cpp + KDevAppFrontendIface.skel KDevMakeFrontendIface.skel +) diff --git a/lib/interfaces/external/CMakeLists.txt b/lib/interfaces/external/CMakeLists.txt new file mode 100644 index 00000000..1a12815c --- /dev/null +++ b/lib/interfaces/external/CMakeLists.txt @@ -0,0 +1,30 @@ +################################################# +# +# (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} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + + +##### headers ################################### + +install( FILES + designer.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kinterfacedesigner ) + + +##### kinterfacedesigner (static) ############### + +tde_add_library( kinterfacedesigner STATIC_PIC AUTOMOC + SOURCES designer.cpp +) diff --git a/lib/interfaces/extras/CMakeLists.txt b/lib/interfaces/extras/CMakeLists.txt new file mode 100644 index 00000000..522a9c10 --- /dev/null +++ b/lib/interfaces/extras/CMakeLists.txt @@ -0,0 +1,40 @@ +################################################# +# +# (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} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES + kdevcompileroptions.h kdevvcsintegrator.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/interfaces/extras ) + +install( FILES + kdevelopcompileroptions.desktop kdevelopvcsintegrator.desktop + DESTINATION ${SERVICETYPES_INSTALL_DIR} ) + + +##### kdevextras (shared) ####################### + +tde_add_library( kdevextras SHARED AUTOMOC + SOURCES kdevcompileroptions.cpp kdevvcsintegrator.cpp + VERSION 0.0.0 + LINK ${TQT_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} +) |