Warning, /graphics/krita/libs/command/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set(kritacommand_LIB_SRCS
0002         kundo2stack.cpp
0003         kundo2group.cpp
0004         kundo2view.cpp
0005         kundo2model.cpp
0006         kundo2magicstring.cpp
0007         kundo2commandextradata.cpp
0008         kis_undo_store.cpp
0009         kis_undo_stores.cpp
0010         kis_command_utils.cpp
0011 )
0012 
0013 kis_add_library(kritacommand SHARED ${kritacommand_LIB_SRCS})
0014 generate_export_header(kritacommand BASE_NAME kritacommand)
0015 
0016 target_link_libraries(kritacommand
0017     PUBLIC
0018         kritawidgetutils 
0019         KF5::I18n 
0020         KF5::ConfigGui
0021         Qt5::Core 
0022         Qt5::Widgets
0023 )
0024 
0025 set_target_properties(kritacommand PROPERTIES
0026     VERSION ${GENERIC_KRITA_LIB_VERSION} SOVERSION ${GENERIC_KRITA_LIB_SOVERSION}
0027 )
0028 install(TARGETS kritacommand ${INSTALL_TARGETS_DEFAULT_ARGS})