blob: 7e94aea196685e54c03571ee8173e9c00497f4b5 (
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
|
kde_services_DATA = karbondefaulttools.desktop
INCLUDES = $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
-I$(srcdir)/.. \
-I$(srcdir)/../commands \
-I$(srcdir)/../core \
-I$(srcdir)/../dialogs \
-I$(srcdir)/../widgets \
-I$(srcdir)/../dockers \
-I$(srcdir)/../render \
-I$(srcdir)/../shapes \
-I$(srcdir)/../visitors \
$(all_includes)
kde_module_LTLIBRARIES = karbon_defaulttools.la
noinst_HEADERS = \
vcurvefit.h \
vrotatetool.h \
vselectnodestool.h \
vselecttool.h \
vsheartool.h \
vellipsetool.h \
vgradienttool.h \
vpatterntool.h \
vpenciltool.h \
vpolygontool.h \
vpolylinetool.h \
vrectangletool.h \
vroundrecttool.h \
vshapetool.h \
vsinustool.h \
vspiraltool.h \
vstartool.h \
vtexttool.h \
vdefaulttools.h
karbon_defaulttools_la_SOURCES = \
vcurvefit.cc \
vrotatetool.cc \
vselectnodestool.cc \
vselecttool.cc \
vsheartool.cc \
vellipsetool.cc \
vgradienttool.cc \
vpatterntool.cc \
vpenciltool.cc \
vpolygontool.cc \
vpolylinetool.cc \
vrectangletool.cc \
vroundrecttool.cc \
vshapetool.cc \
vsinustool.cc \
vspiraltool.cc \
vstartool.cc \
vtexttool.cc \
vdefaulttools.cc
karbon_defaulttools_la_LIBADD = $(LIB_KPARTS) $(LIB_KOFFICECORE) $(LIB_KOFFICEUI) $(LIB_KOPAINTER) ../libkarboncommon.la
karbon_defaulttools_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -ltdeio
karbon_defaulttools_la_METASOURCES = \
AUTO
|