mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 16:31:06 +00:00
3394be9464
This patch integrate the scout widgets with Genode's new API headers 'util/geometry.h', 'os/surface.h' and 'os/texture.h'. Thereby, we get almost rid of the platform-abstraction shim that was never used anyway. Furthermore, it extracts the parts that are worth reusing from the scout implementation to the public location 'demo/include/scout'.
32 lines
765 B
Makefile
32 lines
765 B
Makefile
LIBS = base blit scout_gfx
|
|
SRC_CC = tick.cc elements.cc widgets.cc scrollbar.cc
|
|
|
|
SCOUT_DIR = $(REP_DIR)/src/app/scout
|
|
|
|
INC_DIR += $(SCOUT_DIR)/include
|
|
|
|
vpath % $(SCOUT_DIR)/data
|
|
vpath %.cc $(SCOUT_DIR)
|
|
|
|
SRC_TFF = vera16.tff \
|
|
verai16.tff \
|
|
vera18.tff \
|
|
vera20.tff \
|
|
vera24.tff \
|
|
verabi10.tff \
|
|
mono16.tff
|
|
|
|
SRC_RGBA = uparrow.rgba \
|
|
downarrow.rgba \
|
|
slider.rgba \
|
|
sizer.rgba \
|
|
titlebar.rgba \
|
|
loadbar.rgba \
|
|
redbar.rgba \
|
|
whitebar.rgba \
|
|
kill_icon.rgba \
|
|
opened_icon.rgba \
|
|
closed_icon.rgba
|
|
|
|
SRC_BIN = $(SRC_TFF) $(SRC_MAP) $(SRC_RGBA)
|