mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
enable VPX support for Windows
git-svn-id: https://svn.eduke32.com/eduke32@2038 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e91c4dc15b
commit
4dc5d792ae
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,7 @@ BUILD32_ON_64 ?= 0
|
||||||
# DO NOT SET THIS TO 1 AND COMMIT IT.
|
# DO NOT SET THIS TO 1 AND COMMIT IT.
|
||||||
NEDMALLOC = 0
|
NEDMALLOC = 0
|
||||||
USE_LIBPNG = 0
|
USE_LIBPNG = 0
|
||||||
USE_LIBVPX = 0
|
USE_LIBVPX = 1
|
||||||
|
|
||||||
ifeq (0,$(USE_OPENGL))
|
ifeq (0,$(USE_OPENGL))
|
||||||
POLYMER = 0
|
POLYMER = 0
|
||||||
|
@ -72,6 +72,7 @@ ifneq (0,$(USE_LIBPNG))
|
||||||
LIBS+= -lpng
|
LIBS+= -lpng
|
||||||
endif
|
endif
|
||||||
ifneq (0,$(USE_LIBVPX))
|
ifneq (0,$(USE_LIBVPX))
|
||||||
|
# On Windows, we link statically to libvpx
|
||||||
LIBS+= -lvpx
|
LIBS+= -lvpx
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue