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

0001 add_definitions(-DTRANSLATION_DOMAIN=\"calligra_shape_paths\")
0002 
0003 include_directories(
0004     ${CMAKE_SOURCE_DIR}/libs/widgets
0005     ${FLAKE_INCLUDES}
0006 )
0007 
0008 add_subdirectory(pics)
0009 
0010 set(pathshapes_PART_SRCS
0011     ellipse/EllipseShape.cpp
0012     ellipse/EllipseShapeFactory.cpp
0013     ellipse/EllipseShapeConfigWidget.cpp
0014     ellipse/EllipseShapeConfigCommand.cpp
0015     spiral/SpiralShape.cpp
0016     spiral/SpiralShapeFactory.cpp
0017     spiral/SpiralShapeConfigWidget.cpp
0018     spiral/SpiralShapeConfigCommand.cpp
0019     star/StarShape.cpp
0020     star/StarShapeFactory.cpp
0021     star/StarShapeConfigWidget.cpp
0022     star/StarShapeConfigCommand.cpp
0023     rectangle/RectangleShape.cpp
0024     rectangle/RectangleShapeFactory.cpp
0025     rectangle/RectangleShapeConfigWidget.cpp
0026     rectangle/RectangleShapeConfigCommand.cpp
0027     enhancedpath/EnhancedPathShape.cpp
0028     enhancedpath/EnhancedPathShapeFactory.cpp
0029     enhancedpath/EnhancedPathCommand.cpp
0030     enhancedpath/EnhancedPathParameter.cpp
0031     enhancedpath/EnhancedPathFormula.cpp
0032     enhancedpath/EnhancedPathHandle.cpp
0033     enhancedpath/CalloutShape.cpp
0034     enhancedpath/CalloutShapeFactory.cpp
0035     enhancedpath/CalloutContainerModel.cpp
0036     enhancedpath/CalloutToolFactory.cpp
0037     enhancedpath/CalloutDebug.cpp
0038     PathShapesPlugin.cpp
0039 )
0040 
0041 ki18n_wrap_ui(pathshapes_PART_SRCS
0042     star/StarShapeConfigWidget.ui
0043     rectangle/RectangleShapeConfigWidget.ui
0044     ellipse/EllipseShapeConfigWidget.ui
0045     spiral/SpiralShapeConfigWidget.ui
0046 )
0047 add_library(calligra_shape_paths MODULE ${pathshapes_PART_SRCS})
0048 calligra_shape_desktop_to_json(calligra_shape_paths calligra_shape_paths.desktop)
0049 
0050 target_link_libraries(calligra_shape_paths flake kowidgets)
0051 
0052 install(TARGETS calligra_shape_paths  DESTINATION ${PLUGIN_INSTALL_DIR}/calligra/shapes)