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

0001 project( artistictextshape )
0002 
0003 add_definitions(-DTRANSLATION_DOMAIN=\"calligra_shape_artistictext\")
0004 
0005 include_directories(
0006     ${KOWIDGETS_INCLUDES}
0007     ${FLAKE_INCLUDES}
0008 )
0009 
0010 set ( ArtisticTextShape_SRCS
0011     ArtisticTextShapePlugin.cpp
0012     ArtisticTextShape.cpp
0013     ArtisticTextRange.cpp
0014     ArtisticTextShapeFactory.cpp
0015     ArtisticTextTool.cpp
0016     ArtisticTextToolFactory.cpp
0017     ArtisticTextToolSelection.cpp
0018     ArtisticTextShapeConfigWidget.cpp
0019     ArtisticTextShapeOnPathWidget.cpp
0020     ArtisticTextShapeLoadingUpdater.cpp
0021     ArtisticTextLoadingContext.cpp
0022     AttachTextToPathCommand.cpp
0023     DetachTextFromPathCommand.cpp
0024     ChangeTextOffsetCommand.cpp
0025     ChangeTextFontCommand.cpp
0026     ChangeTextAnchorCommand.cpp
0027     AddTextRangeCommand.cpp
0028     RemoveTextRangeCommand.cpp
0029     MoveStartOffsetStrategy.cpp
0030     SelectTextStrategy.cpp
0031     ReplaceTextRangeCommand.cpp
0032 )
0033 
0034 ki18n_wrap_ui( ArtisticTextShape_SRCS
0035     ArtisticTextShapeConfigWidget.ui
0036     ArtisticTextShapeOnPathWidget.ui
0037 )
0038 
0039 add_library(calligra_shape_artistictext MODULE ${ArtisticTextShape_SRCS} )
0040 
0041 calligra_shape_desktop_to_json(calligra_shape_artistictext calligra_shape_artistictext.desktop)
0042 
0043 target_link_libraries(calligra_shape_artistictext flake kowidgets)
0044 
0045 install( TARGETS calligra_shape_artistictext DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/shapes )