We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f38309 commit efe7d49Copy full SHA for efe7d49
Makefile
@@ -60,14 +60,13 @@ libtwin.a_includes-y := \
60
# Features
61
libtwin.a_files-$(CONFIG_LOGGING) += src/log.c
62
libtwin.a_files-$(CONFIG_CURSOR) += src/cursor.c
63
-libtwin.a_files-$(CONFIG_RENDERER_BUILTIN) += src/draw.c
64
65
-## Pixman
66
-libtwin.a_files-$(CONFIG_RENDERER_PIXMAN) += src/pixman.c
+# Renderer
+libtwin.a_files-$(CONFIG_RENDERER_BUILTIN) += src/draw.c
+libtwin.a_files-$(CONFIG_RENDERER_PIXMAN) += src/draw-pixman.c
67
libtwin.a_cflags-$(CONFIG_RENDERER_PIXMAN) += $(shell pkg-config --cflags pixman-1)
68
ifeq ($(CONFIG_RENDERER_PIXMAN), y)
69
TARGET_LIBS += $(shell pkg-config --libs pixman-1)
70
-CFLAGS += $(shell pkg-config --cflags pixman-1)
71
endif
72
73
# Image loaders
src/pixman.c src/draw-pixman.c
0 commit comments