blob: d809eaeed03c17b162c598aa6e5aa3c5746cb1c7 (
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
|
kde_services_DATA = kritatoolcurves.desktop
# all_includes must remain last!
INCLUDES = -I$(srcdir)/../../../sdk \
-I$(srcdir)/../../../core \
-I$(srcdir)/../../../kritacolor/ \
-I$(srcdir)/../../../ui \
-I$/../../../ui \
$(KOFFICE_INCLUDES) \
$(all_includes)
kritatoolcurves_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 = kritatoolcurves.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
kritatoolcurves_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
kritatoolcurves_la_LIBADD = ../../../libkritacommon.la
kritatoolcurves_la_METASOURCES = AUTO
KDE_OPTIONS = nofinal
kritapics_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
kritapicsdir = $(kde_datadir)/krita/pics
|