Warning, /libraries/kreport/src/plugins/web/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 ecm_create_qm_loader(kreport_webplugin_QM_LOADER kreport_webplugin_qt)
0002 
0003 #build a shared library
0004 set(kreport_webplugin_LIB_SRCS
0005     ${PROJECT_SOURCE_DIR}/src/common/kreportplugin_debug.cpp
0006     KReportDesignerItemWeb.cpp
0007     KReportItemWeb.cpp
0008     KReportWebPlugin.cpp
0009     ${kreport_webplugin_QM_LOADER}
0010     kreport_webplugin.json
0011 )
0012 
0013 add_library(org.kde.kreport.web MODULE ${kreport_webplugin_LIB_SRCS})
0014 
0015 target_link_libraries(org.kde.kreport.web
0016     PUBLIC
0017         KReport
0018     PRIVATE
0019         Qt5::WebKitWidgets # TODO WebEngineWidgets?
0020 )
0021 
0022 ########### install files ###############
0023 
0024 install(TARGETS org.kde.kreport.web DESTINATION ${KREPORT_PLUGIN_INSTALL_DIR})
0025 
0026 add_subdirectory(pics)