mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-28 23:02:37 +00:00
use system SDL lib
This commit is contained in:
parent
67da8fbc6f
commit
8200e26360
1 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ ifeq ($(PLATFORM),linux)
|
||||||
|
|
||||||
# !!! FIXME: make this a build option? Make it coexist with X11 glimp?
|
# !!! FIXME: make this a build option? Make it coexist with X11 glimp?
|
||||||
ifeq ($(strip $(USE_SDL)),true)
|
ifeq ($(strip $(USE_SDL)),true)
|
||||||
BASE_CFLAGS += -DUSE_SDL=1 -ISDL12/include
|
BASE_CFLAGS += -DUSE_SDL=1 $(shell sdl-config --cflags)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
GL_CFAGS = -I/usr/X11R6/include
|
GL_CFAGS = -I/usr/X11R6/include
|
||||||
|
@ -172,7 +172,7 @@ ifeq ($(PLATFORM),linux)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(USE_SDL)),true)
|
ifeq ($(strip $(USE_SDL)),true)
|
||||||
LDFLAGS+=-lSDL
|
LDFLAGS+=$(shell sdl-config --libs)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ARCH),i386)
|
ifeq ($(ARCH),i386)
|
||||||
|
|
Loading…
Reference in a new issue