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

0001 ecm_create_qm_loader(kreport_mapsplugin_QM_LOADER kreport_mapsplugin_qt)
0002 
0003 #build a shared library
0004 set(kreport_mapsplugin_LIB_SRCS
0005     ${PROJECT_SOURCE_DIR}/src/common/kreportplugin_debug.cpp
0006     KReportDesignerItemMaps.cpp
0007     KReportItemMaps.cpp
0008     KReportMapsPlugin.cpp
0009     KReportMapRenderer.cpp
0010     ${kreport_mapsplugin_QM_LOADER}
0011     kreport_mapsplugin.json
0012 )
0013 
0014 if(KREPORT_SCRIPTING)
0015     list(APPEND kreport_mapsplugin_LIB_SRCS
0016         KReportScriptMaps.cpp
0017     )
0018 endif()
0019 
0020 add_library(org.kde.kreport.maps MODULE ${kreport_mapsplugin_LIB_SRCS})
0021 
0022 target_link_libraries(org.kde.kreport.maps
0023     PUBLIC
0024         KReport
0025     PRIVATE
0026         Marble
0027 )
0028 
0029 ########### install files ###############
0030 
0031 install(TARGETS org.kde.kreport.maps DESTINATION ${KREPORT_PLUGIN_INSTALL_DIR})
0032 
0033 add_subdirectory(pics)