user-config.jam 1.9 KB

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