Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 148556522f7dc00c6e778e96ce4a342923bc94cb (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
64
65
66
67
68
69
METASOURCES = AUTO
AM_CPPFLAGS = -I$(top_srcdir)/src


if BUILD_DEDICATED
noinst_LTLIBRARIES =
else
noinst_LTLIBRARIES = libui.la
endif

noinst_HEADERS = \
	bitmap.h \
	button.h \
	checkbox.h \
	colorpicker.h \
	console.h \
	definitions.h \
	font.h \
	iconbutton.h \
	inputbox.h \
	label.h \
	listitem.h \
	listview.h \
	modelview.h \
	paint.h \
	palette.h \
	plaintext.h \
	scrollbar.h \
	scrollpane.h \
	slider.h \
	toolbar.h \
	ui.h \
	widget.h \
	window.h

libui_la_SOURCES = \
	bitmap.cc \
	button.cc \
	checkbox.cc \
	colorpicker.cc \
	console.cc \
	font.cc \
	iconbutton.cc \
	inputbox.cc \
	label.cc \
	listitem.cc \
	listview.cc \
	modelview.cc \
	paint.cc \
	palette.cc \
	plaintext.cc \
	scrollbar.cc \
	scrollpane.cc \
	slider.cc \
	toolbar.cc \
	ui.cc \
	widget.cc \
	window.cc

libui_la_DEPENDENCIES = \
	$(top_builddir)/src/auxiliary/libauxiliary.la \
	$(top_builddir)/src/math/libmath.la \
	$(top_builddir)/src/sys/libsys.la \
	$(top_builddir)/src/filesystem/libfilesystem.la \
	$(top_builddir)/src/model/libmodel.la \
	$(top_builddir)/src/core/libcore.la \
	$(top_builddir)/src/render/librender.la

libui_la_LDFLAGS = -avoid-version -no-undefined