Merge pull request #178 from DOCGroup/elliottc/more_databases
[MPC.git] / config / zlib.mpb
blob731935a33730ed9ab0fc0509ee50eee06391dde1
1 // -*- MPC -*-
2 feature(zlib) {
3   expand(ZLIB_INCDIR) {
4     $ZLIB_INCDIR
5     $(ZLIB_ROOT)/include
6   }
7   expand(ZLIB_LIBDIR) {
8     $ZLIB_LIBDIR
9     $(ZLIB_ROOT)/lib
10   }
12   includes += "$(ZLIB_INCDIR)"
13   libpaths += "$(ZLIB_LIBDIR)"
14   macros   += ZLIB
16   specific(prop:windows) {
17     Debug::lit_libs += zlibd
18     Release::lit_libs += zlib
19   } else {
20     lit_libs += z
21   }