blob: ee753e7e7ee845ed12cb28efad8067e436165292 (
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.cpp \
vrotatetool.cpp \
vselectnodestool.cpp \
vselecttool.cpp \
vsheartool.cpp \
vellipsetool.cpp \
vgradienttool.cpp \
vpatterntool.cpp \
vpenciltool.cpp \
vpolygontool.cpp \
vpolylinetool.cpp \
vrectangletool.cpp \
vroundrecttool.cpp \
vshapetool.cpp \
vsinustool.cpp \
vspiraltool.cpp \
vstartool.cpp \
vtexttool.cpp \
vdefaulttools.cpp
karbon_defaulttools_la_LIBADD = $(LIB_TDEPARTS) $(LIB_KOFFICECORE) $(LIB_KOFFICEUI) $(LIB_KOPAINTER) ../libkarboncommon.la
karbon_defaulttools_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio
karbon_defaulttools_la_METASOURCES = \
AUTO
|