diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-01-09 11:40:23 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-05 10:48:22 +0200 |
commit | cd2bc889e5b30c69926fc1511b6522e7cb4c705d (patch) | |
tree | 2e436873e72110ad1b22b5b4d84f409d6a05b5aa /ui/Makefile.objs | |
parent | 985e1c9b008e5e8b6eac41546266d3abcfa6282a (diff) |
console-gl: add opengl rendering helper functions
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'ui/Makefile.objs')
-rw-r--r-- | ui/Makefile.objs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/Makefile.objs b/ui/Makefile.objs index 7a76df578f..67fe278c15 100644 --- a/ui/Makefile.objs +++ b/ui/Makefile.objs @@ -26,9 +26,12 @@ sdl.mo-cflags := $(SDL_CFLAGS) ifeq ($(CONFIG_OPENGL),y) common-obj-y += shader.o +common-obj-y += console-gl.o endif gtk.o-cflags := $(GTK_CFLAGS) $(VTE_CFLAGS) shader.o-cflags += $(OPENGL_CFLAGS) +console-gl.o-cflags += $(OPENGL_CFLAGS) shader.o-libs += $(OPENGL_LIBS) +console-gl.o-libs += $(OPENGL_LIBS) |