Warning, /kdevelop/kdevelop/plugins/execute/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_definitions(-DTRANSLATION_DOMAIN=\"kdevexecute\")
0002 ########### next target ###############
0003 
0004 set(kdevexecute_PART_SRCS
0005 
0006     projecttargetscombobox.cpp
0007     executeplugin.cpp
0008     nativeappconfig.cpp
0009     nativeappjob.cpp
0010 )
0011 
0012 declare_qt_logging_category(kdevexecute_PART_SRCS
0013     TYPE PLUGIN
0014     IDENTIFIER PLUGIN_EXECUTE
0015     CATEGORY_BASENAME "execute"
0016 )
0017 
0018 ki18n_wrap_ui( kdevexecute_PART_SRCS nativeappconfig.ui)
0019 
0020 kdevplatform_add_plugin(kdevexecute SOURCES ${kdevexecute_PART_SRCS})
0021 
0022 target_link_libraries(kdevexecute
0023     KF5::KCMUtils
0024     KDev::Interfaces
0025     KDev::Util
0026     KDev::Project
0027     KDev::OutputView
0028     KDev::Shell
0029 )
0030 
0031 add_library(KDevPlatformIExecute INTERFACE)
0032 add_library(KDev::IExecute ALIAS KDevPlatformIExecute)
0033 target_include_directories(KDevPlatformIExecute INTERFACE
0034     "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>"
0035     "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR}/kdevplatform>"
0036 )
0037 set_target_properties(KDevPlatformIExecute PROPERTIES
0038     EXPORT_NAME IExecute
0039 )
0040 install(TARGETS KDevPlatformIExecute EXPORT KDevPlatformTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
0041 
0042 ########### install files ###############
0043 
0044 install(FILES iexecuteplugin.h DESTINATION ${KDE_INSTALL_INCLUDEDIR}/kdevplatform/execute COMPONENT Devel)