user-config.jam 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and
  2. # distribute this software is granted provided this copyright notice appears in
  3. # all copies. This software is provided "as is" without express or implied
  4. # warranty, and with no claim as to its suitability for any purpose.
  5. # This file is used to configure your Boost.Build installation. Please read
  6. # the user manual to find out where to put it.
  7. # Toolset declarations are most important in this file. The tell Boost.Build
  8. # what compilers are available and where to look for them. The first toolset
  9. # will become "default" one.
  10. # Some important libraries can also be configured.
  11. # Uncomment relevant parts to suite your local configuration and preferences.
  12. import toolset : using ;
  13. # GCC configuration
  14. # Configure gcc (default version)
  15. # using gcc ;
  16. # Configure specific gcc version, giving alternative name to use
  17. # using gcc : 3.2 g++-3.2 ;
  18. # MSVC configuration
  19. # Configure msvc (default version, searched in standard location
  20. # and PATH).
  21. # using msvc ;
  22. # Borland configuration
  23. # using borland ;
  24. # STLPort configuration
  25. # Configure, specifying location of STLPort headers.
  26. # Libraries must be either not needed, or available to
  27. # the compiler by default
  28. # using stlport : /usr/include/stlport ;
  29. # Configure, specifying locatioh of both headers and libraries
  30. # using stlport : /usr/include/stlport : /usr/lib ;
  31. # QT configuration
  32. # Configure, assuming QTDIR gives the installation prefix
  33. # using qt ;
  34. # Configure with explicit installation prefix
  35. # using qt : /usr/opt/qt ;
  36. # xsltproc (from libxslt) configuration
  37. using xsltproc ;
  38. # BoostBook configuration
  39. # using boostbook ;
  40. using boostbook : C:/Progra~1/docbook-xsl/docbook-xsl-1.66.1
  41. : C:/Progra~1/docbook/4.2
  42. ;
  43. using doxygen : C:/Progra~1/doxygen/bin/doxygen.exe ;
  44. using fop : C:/PROGRA~1/fop/FOP-02~1.4
  45. : C:/WINDOWS/system32/java.exe
  46. ;
粤ICP备19079148号