enable VPX support for Windows

git-svn-id: https://svn.eduke32.com/eduke32@2038 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2011-09-21 22:38:37 +00:00
parent e91c4dc15b
commit 4dc5d792ae
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,7 @@ BUILD32_ON_64 ?= 0
# DO NOT SET THIS TO 1 AND COMMIT IT.
NEDMALLOC = 0
USE_LIBPNG = 0
USE_LIBVPX = 0
USE_LIBVPX = 1
ifeq (0,$(USE_OPENGL))
POLYMER = 0
@ -72,6 +72,7 @@ ifneq (0,$(USE_LIBPNG))
LIBS+= -lpng
endif
ifneq (0,$(USE_LIBVPX))
# On Windows, we link statically to libvpx
LIBS+= -lvpx
endif