blob: 398f7a2fab010283df7da677fffb9991421ae632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# SPDX-License-Identifier: GPL-2.0-or-later
set(livarot_SRC
AlphaLigne.cpp
AVL.cpp
BitLigne.cpp
float-line.cpp
int-line.cpp
PathConversion.cpp
Path.cpp
PathCutting.cpp
path-description.cpp
PathOutline.cpp
PathSimplify.cpp
PathStroke.cpp
Shape.cpp
ShapeDraw.cpp
ShapeMisc.cpp
ShapeRaster.cpp
ShapeSweep.cpp
sweep-event.cpp
sweep-tree.cpp
sweep-tree-list.cpp
# -------
# Headers
AVL.h
AlphaLigne.h
BitLigne.h
LivarotDefs.h
Path.h
Shape.h
float-line.h
int-line.h
path-description.h
sweep-event-queue.h
sweep-event.h
sweep-tree-list.h
sweep-tree.h
)
add_inkscape_lib(livarot_LIB "${livarot_SRC}")
target_link_libraries(livarot_LIB PUBLIC 2Geom::2geom)
|