blob: aabebf800a3d3f889a89d8eb0a87139fa7a5df7e (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
-I$(srcdir)/.. \
-I$(srcdir)/../render \
-I$(srcdir)/../visitors \
$(LIBFREETYPE_CFLAGS) $(LIBFONTCONFIG_CFLAGS) $(all_includes)
noinst_LTLIBRARIES = libkarboncore.la
noinst_HEADERS = \
vcolor.h \
vcomposite.h \
vcomposite_iface.h \
vdashpattern.h \
vdocument.h \
vfill.h \
vglobal.h \
vgradient.h \
vgroup.h \
vobject_iface.h \
vgroup_iface.h \
vimage.h \
vkarbonplugin.h \
vlayer.h \
vobject.h \
vpath.h \
vpattern.h \
vsegment.h \
vselection.h \
vstroke.h \
vvisitor.h \
vlayer_iface.h \
vtext.h \
vtext_iface.h \
vclipgroup.h \
vcursor.h
libkarboncore_la_SOURCES = \
vcolor.cc \
vcomposite.cc \
vcomposite_iface.cc \
vcomposite_iface.skel \
vdashpattern.cc \
vdocument.cc \
vfill.cc \
vglobal.cc \
vgradient.cc \
vgroup.cc \
vobject_iface.cc \
vobject_iface.skel \
vgroup_iface.cc \
vgroup_iface.skel \
vimage.cc \
vkarbonplugin.cc \
vlayer.cc \
vobject.cc \
vpath.cc \
vpattern.cc \
vsegment.cc \
vselection.cc \
vstroke.cc \
vvisitor.cc \
vlayer_iface.cc \
vlayer_iface.skel \
vtext.cc \
vtext_iface.cc \
vtext_iface.skel \
vclipgroup.cc \
vcursor.cc
libkarboncore_la_LIBADD = $(LIBFONTCONFIG_LIBS)
libkarboncore_la_METASOURCES = \
AUTO
|