Warning, /graphics/krita/libs/ui/animation/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/qtlockedfile 0002 ) 0003 0004 set(kritaanimation_LIB_SRCS 0005 KisFFMpegWrapper.cpp 0006 KisVideoSaver.cpp 0007 KisAnimationRenderingOptions.cpp 0008 KisAnimationRender.cpp 0009 KisDlgAnimationRenderer.cpp 0010 VideoExportOptionsDialog.cpp 0011 VideoHDRMetadataOptionsDialog.cpp 0012 KisHDRMetadataOptions.cpp 0013 KisDlgImportVideoAnimation.cpp 0014 ) 0015 0016 ki18n_wrap_ui(kritaanimation_LIB_SRCS 0017 wdg_animationrenderer.ui 0018 video_export_options_dialog.ui 0019 VideoHDRMetadataOptionsDialog.ui 0020 VideoImportDialog.ui 0021 0022 ) 0023 0024 kis_add_library(kritaanimation SHARED ${kritaanimation_HEADERS_MOC} ${kritaanimation_LIB_SRCS}) 0025 generate_export_header(kritaanimation BASE_NAME kritaanimation) 0026 0027 target_link_libraries( kritaanimation PUBLIC kritaui ) 0028 0029 set_target_properties(kritaanimation PROPERTIES 0030 VERSION ${GENERIC_KRITA_LIB_VERSION} SOVERSION ${GENERIC_KRITA_LIB_SOVERSION} 0031 ) 0032 0033 install(TARGETS kritaanimation ${INSTALL_TARGETS_DEFAULT_ARGS}) 0034