mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +00:00
move Windows zlib options out of PNG to ZLIB
This commit is contained in:
parent
c9aebc6f81
commit
93c9841360
1 changed files with 11 additions and 3 deletions
|
@ -85,13 +85,21 @@ endif
|
||||||
OBJS=$(OBJDIR)/dx_error.o $(OBJDIR)/fabdxlib.o $(OBJDIR)/win_vid.o $(OBJDIR)/win_dll.o
|
OBJS=$(OBJDIR)/dx_error.o $(OBJDIR)/fabdxlib.o $(OBJDIR)/win_vid.o $(OBJDIR)/win_dll.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
ZLIB_CFLAGS?=-I../libs/zlib
|
||||||
|
ifdef MINGW64
|
||||||
|
ZLIB_LDFLAGS?=-L../libs/zlib/win32 -lz64
|
||||||
|
else
|
||||||
|
ZLIB_LDFLAGS?=-L../libs/zlib/win32 -lz32
|
||||||
|
endif
|
||||||
|
|
||||||
ifndef NOPNG
|
ifndef NOPNG
|
||||||
ifndef PNG_CONFIG
|
ifndef PNG_CONFIG
|
||||||
PNG_CFLAGS?=-I../libs/libpng-src -I../libs/zlib
|
PNG_CFLAGS?=-I../libs/libpng-src
|
||||||
ifdef MINGW64
|
ifdef MINGW64
|
||||||
PNG_LDFLAGS?=-L../libs/libpng-src/projects -lpng64 -L../libs/zlib/win32 -lz64
|
PNG_LDFLAGS?=-L../libs/libpng-src/projects -lpng64
|
||||||
else
|
else
|
||||||
PNG_LDFLAGS?=-L../libs/libpng-src/projects -lpng32 -L../libs/zlib/win32 -lz32
|
PNG_LDFLAGS?=-L../libs/libpng-src/projects -lpng32
|
||||||
endif #MINGW64
|
endif #MINGW64
|
||||||
endif #PNG_CONFIG
|
endif #PNG_CONFIG
|
||||||
endif #NOPNG
|
endif #NOPNG
|
||||||
|
|
Loading…
Reference in a new issue