blob: 9d31bf736bfeccd08dd399cd8e61d82d997b7c91 (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
noinst_LIBRARIES = libenigma_gui.a
libenigma_gui_a_SOURCES = \
ebutton.cpp \
ecanvas.cpp \
einput.cpp \
einputnumber.cpp \
einputstring.cpp \
elabel.cpp \
elistbox.cpp \
elistboxcontent.cpp \
epixmap.cpp \
epositiongauge.cpp \
eslider.cpp \
esubtitle.cpp \
evideo.cpp \
ewidget.cpp \
ewidgetanimation.cpp \
ewidgetdesktop.cpp \
ewindow.cpp \
ewindowstyle.cpp \
ewindowstyleskinned.cpp
guiincludedir = $(pkgincludedir)/lib/gui
guiinclude_HEADERS = \
ebutton.h \
ecanvas.h \
einput.h \
einputnumber.h \
einputstring.h \
elabel.h \
elistbox.h \
elistboxcontent.h \
epixmap.h \
epositiongauge.h \
eslider.h \
esubtitle.h \
evideo.h \
ewidget.h \
ewidgetanimation.h \
ewidgetdesktop.h \
ewindow.h \
ewindowstyle.h \
ewindowstyleskinned.h
|