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

0001 add_subdirectory(3rdparty/qtcreator-libs)
0002 
0003 remove_definitions(
0004     -DQT_NO_FOREACH
0005 )
0006 add_subdirectory(duchain)
0007 add_subdirectory(nodejsmodules)
0008 if(BUILD_TESTING)
0009     add_subdirectory(tests)
0010 endif()
0011 add_subdirectory(codecompletion)
0012 
0013 declare_qt_logging_category(kdevqmljslanguagesupport_LOG_SRCS
0014     TYPE PLUGIN
0015     IDENTIFIER KDEV_QMLJS
0016     CATEGORY_BASENAME "qmljs"
0017 )
0018 kdevplatform_add_plugin(kdevqmljslanguagesupport SOURCES
0019     qmljsparsejob.cpp
0020     qmljshighlighting.cpp
0021     kdevqmljsplugin.cpp
0022     navigation/propertypreviewwidget.cpp
0023     ${kdevqmljslanguagesupport_LOG_SRCS}
0024 )
0025 target_link_libraries(kdevqmljslanguagesupport
0026     kdevqmljsduchain
0027     kdevqmljscompletion
0028     Qt5::Widgets
0029     Qt5::QuickWidgets
0030     KF5::Declarative
0031     KDev::DefinesAndIncludesManager
0032 )
0033 
0034 install(DIRECTORY navigation/propertywidgets DESTINATION ${KDE_INSTALL_DATADIR}/kdevqmljssupport)