Fixed include paths for 3rdparty libs (nw)

This commit is contained in:
Miodrag Milanovic 2015-01-10 12:06:16 +01:00
parent 67e5785c2f
commit e427c5471b

View File

@ -752,7 +752,7 @@ LIBS =
# add expat XML library
ifeq ($(BUILD_EXPAT),1)
INCPATH += -I$(SRC)/lib/expat
INCPATH += -I$(3RDPARTY)/expat/lib
EXPAT = $(OBJ)/libexpat.a
else
LIBS += -lexpat
@ -761,7 +761,7 @@ endif
# add ZLIB compression library
ifeq ($(BUILD_ZLIB),1)
INCPATH += -I$(SRC)/lib/zlib
INCPATH += -I$(3RDPARTY)/zlib
ZLIB = $(OBJ)/libz.a
else
LIBS += -lz