summaryrefslogtreecommitdiff
path: root/config/zlib.mpb
blob: af7711acaf90a8036ceaf4bead6aeb4758ec235b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// -*- MPC -*-
feature(zlib) {
  includes += "$(ZLIB_ROOT)/include"
  libpaths += "$(ZLIB_ROOT)/lib"
  macros   += ZLIB

  // @@ Notice: If you are building with Cygwin, you may need to manually
  //            change the following library to zlib.
  specific(prop:windows) {
    zlibname = zlib
    lit_libs += $(ZLIBNAME)
  } else {
    lit_libs += z
  }
}