summaryrefslogtreecommitdiff
path: root/config/lzo1.mpb
blob: 4fd81027fd1d6e8ce09ee06da75974e2e62aa9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// -*- MPC -*-
feature(lzo1) {
  // If the include files for lzo1 are not relative to the root (for
  // example, /usr/include/lzo), set the LZO1_INCDIR environment variable.
  expand(LZO1_INCDIR) {
    $LZO1_INCDIR
    $(LZO1_ROOT)/include
  }
  includes += $(LZO1_INCDIR)
  libpaths += $(LZO1_ROOT)/lib
  specific (prop:microsoft) {
    lit_libs += liblzo
  } else {
    lit_libs += lzo
  }
}