Warning, /graphics/krita/libs/store/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 include_directories(${QUAZIP_INCLUDE_DIRS})
0002
0003 add_subdirectory(tests)
0004
0005 set(kritastore_LIB_SRCS
0006 KoDirectoryStore.cpp
0007 KoStoreDevice.cpp
0008 KoLZF.cpp
0009 KoStore.cpp
0010 KoXmlNS.cpp
0011 KoXmlWriter.cpp
0012 KoQuaZipStore.cpp
0013 StoreDebug.cpp
0014 )
0015
0016 kis_add_library(kritastore SHARED ${kritastore_LIB_SRCS})
0017 generate_export_header(kritastore BASE_NAME kritastore)
0018
0019 target_link_libraries(kritastore
0020 PRIVATE
0021 kritaversion
0022 kritaglobal
0023 KF5::ConfigCore
0024 Qt5::Xml
0025 Qt5::Gui
0026 ${QUAZIP_LIBRARIES}
0027 )
0028
0029 set_target_properties(kritastore PROPERTIES
0030 VERSION ${GENERIC_KRITA_LIB_VERSION} SOVERSION ${GENERIC_KRITA_LIB_SOVERSION}
0031 )
0032 install(TARGETS kritastore ${INSTALL_TARGETS_DEFAULT_ARGS} )
0033