blob: 21628f842c6e488ade8f3092ece56b4ddaba8f46 (
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
|
kde_services_DATA = chalktoolcurves.desktop
# all_includes must remain last!
INCLUDES = -I$(srcdir)/../../../sdk \
-I$(srcdir)/../../../core \
-I$(srcdir)/../../../chalkcolor/ \
-I$(srcdir)/../../../ui \
-I$/../../../ui \
$(KOFFICE_INCLUDES) \
$(all_includes)
chalktoolcurves_la_SOURCES = \
kis_curve_framework.cc \
kis_tool_curve.cc \
tool_curves.cc \
wdg_tool_example.ui \
kis_tool_example.cc \
kis_tool_bezier.cc \
kis_tool_bezier_paint.cc \
kis_tool_bezier_select.cc \
kis_tool_moutline.cc
# Install this plugin in the KDE modules directory
kde_module_LTLIBRARIES = chalktoolcurves.la
noinst_HEADERS = \
kis_curve_framework.h \
kis_tool_curve.h \
tool_curves.h \
kis_tool_example.h \
kis_tool_bezier.h \
kis_tool_bezier_paint.h \
kis_tool_bezier_select.h \
kis_tool_moutline.h
chalktoolcurves_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) -ltdecore -ltdeui -lkjs -ltdefx -lkio -ltdeparts
chalktoolcurves_la_LIBADD = ../../../libchalkcommon.la \
../../../../chalk/chalkcolor/libchalkcolor.la \
../../../../chalk/core/libchalkimage.la \
../../../../chalk/ui/libchalkui.la
chalktoolcurves_la_METASOURCES = AUTO
KDE_OPTIONS = nofinal
chalkpics_DATA = \
tool_example.png \
tool_example_cursor.png \
tool_bezier_paint.png \
tool_bezier_select.png \
tool_bezier_cursor.png \
tool_moutline.png \
tool_moutline_cursor.png \
tool_curve_dragging.png \
tool_moutline_editing.png
chalkpicsdir = $(kde_datadir)/chalk/pics
|