diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2019-07-13 11:38:26 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2019-07-13 11:42:21 +0100 |
commit | 0687370b2e0d8caab3cc4f6ad18fda068bed5518 (patch) | |
tree | e65f3679bb35e31d982ff88f78d29b301bb9bc3a /Makefile | |
parent | f357024377435d2b2343f283b900979c307d6a36 (diff) | |
download | imv-0687370b2e0d8caab3cc4f6ad18fda068bed5518.tar.gz |
Create stub X11 window implementation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,11 @@ ifeq ($(WINDOWS),wayland) override LIBS += -lwayland-client -lwayland-egl -lEGL endif +ifeq ($(WINDOWS),x11) + SOURCES += src/x11_window.c + override LIBS += -lX11 -lGL -lGLU +endif + # Add backends to build as configured ifeq ($(BACKEND_FREEIMAGE),yes) SOURCES += src/backend_freeimage.c |