Add possibility to build Imlib on win32/64.

This commit is contained in:
Themaister 2011-05-24 01:28:00 +02:00
parent 2782c9da91
commit 83d913b6d2
2 changed files with 12 additions and 0 deletions

View File

@ -16,6 +16,7 @@ HAVE_DYLIB = 1
HAVE_NETPLAY = 1
HAVE_FBO = 1
HAVE_CG = 0
HAVE_IMLIB = 0
libsnes ?= -lsnes
LIBS = -lm
@ -92,6 +93,12 @@ ifeq ($(HAVE_DYLIB), 1)
OBJ += gfx/ext.o audio/ext.o
endif
ifeq ($(HAVE_IMLIB), 1)
LIBS += -lImlib2
DEFINES += -DHAVE_IMLIB
endif
ifneq ($(V),1)
Q := @
endif

View File

@ -16,6 +16,7 @@ HAVE_DYLIB = 1
HAVE_NETPLAY = 1
HAVE_FBO = 1
HAVE_CG = 0
HAVE_IMLIB = 0
libsnes ?= -lsnes
LIBS = -lm
@ -92,6 +93,10 @@ ifeq ($(HAVE_DYLIB), 1)
OBJ += gfx/ext.o audio/ext.o
endif
ifeq ($(HAVE_IMLIB), 1)
LIBS += -lImlib2
DEFINES += -DHAVE_IMLIB
endif
ifneq ($(V),1)
Q := @