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

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