repo.or.cz
/
MPC.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #178 from DOCGroup/elliottc/more_databases
[MPC.git]
/
config
/
zlib.mpb
blob
731935a33730ed9ab0fc0509ee50eee06391dde1
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
}
11
12
includes += "$(ZLIB_INCDIR)"
13
libpaths += "$(ZLIB_LIBDIR)"
14
macros += ZLIB
15
16
specific(prop:windows) {
17
Debug::lit_libs += zlibd
18
Release::lit_libs += zlib
19
} else {
20
lit_libs += z
21
}
22
}