You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.9 KiB
62 lines
1.9 KiB
#################################################
|
|
#
|
|
# (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
|
|
tdevlanguagesupport.h tdevmainwindow.h tdevpartcontroller.h
|
|
tdevplugin.h tdevproject.h tdevcore.h tdevcoderepository.h
|
|
codemodel.h codemodel_utils.h codemodel_treeparser.h
|
|
tdevgenericfactory.h tdevapi.h tdevdesignerintegration.h
|
|
tdevplugincontroller.h tdevplugininfo.h TDevCoreIface.h
|
|
TDevPartControllerIface.h katedocumentmanagerinterface.h
|
|
hashedstring.h
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/interfaces )
|
|
|
|
install( FILES
|
|
tdevelopproject.desktop tdeveloplanguagesupport.desktop
|
|
tdevelopplugin.desktop
|
|
DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
|
|
|
|
|
##### tdevinterfaces (static) ###################
|
|
|
|
tde_add_library( tdevinterfaces STATIC_PIC AUTOMOC
|
|
SOURCES
|
|
tdevcore.cpp tdevproject.cpp tdevlanguagesupport.cpp
|
|
tdevpartcontroller.cpp tdevapi.cpp TDevCoreIface.skel
|
|
tdevmainwindow.cpp TDevPartControllerIface.skel
|
|
tdevplugin.cpp tdevcoderepository.cpp
|
|
codemodel.cpp codemodel_treeparser.cpp
|
|
codemodel_utils.cpp tdevdesignerintegration.cpp
|
|
tdevplugincontroller.cpp tdevplugininfo.cpp
|
|
TDevCoreIface.cpp TDevPartControllerIface.cpp
|
|
katedocumentmanagerinterface.cpp
|
|
katedocumentmanagerinterface.skel tdevprojectiface.cpp
|
|
tdevprojectiface.skel tdevdesignerintegrationiface.cpp
|
|
tdevdesignerintegrationiface.skel hashedstring.cpp
|
|
)
|