Warning, /office/calligra/libs/plugin/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 set(koplugin_LIB_SRCS
0003     KoPluginLoader.cpp
0004 )
0005 
0006 add_library(koplugin SHARED ${koplugin_LIB_SRCS})
0007 generate_export_header(koplugin BASE_NAME koplugin)
0008 
0009 target_link_libraries(koplugin
0010     PUBLIC
0011         Qt5::Core
0012     PRIVATE
0013         KF5::ConfigCore
0014         KF5::CoreAddons
0015 )
0016 
0017 set_target_properties(koplugin PROPERTIES
0018     VERSION ${GENERIC_CALLIGRA_LIB_VERSION} SOVERSION ${GENERIC_CALLIGRA_LIB_SOVERSION}
0019 )
0020 install(TARGETS koplugin ${INSTALL_TARGETS_DEFAULT_ARGS} )
0021