Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: xerces.mpb 198 2005-12-15 11:30:53Z bj $
3
 
4
project {
198 bj 5
  requires += xerces
107 bj 6
  includes += $(XERCESCROOT)/include
7
  libpaths += $(XERCESCROOT)/lib
8
 
9
  specific (em3, vc6, vc7, vc71, vc8, nmake) {
10
    xerceslib = xerces-c_2
11
 
12
    // Linking the optimized version of xerces-c_2 into a debug application
13
    // has been known to cause run-time issues (as of 4/25/2005), so we
14
    // will link in the debug version for the "Debug" configuration.
15
    Debug::xerceslib = xerces-c_2D
16
  }
17
  specific(borland, bmake, cbx) {
18
    xerceslib = XercesLib
19
  }
20
  specific (gnuace, make, sle, automake, ghs) {
21
    macros   += XML_USE_PTHREADS
22
    xerceslib = xerces-c
23
  }
24
 
25
  // We have to use lit_libs here as the library decorator
26
  // does not necessarily match what MPC uses (particularly for
27
  // static builds).
28
  lit_libs += $(XERCESLIB)
29
}