Jamfile.v2 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Copyright 2005 Rene Rivera
  2. # Copyright 2005 Hartmut Kaiser
  3. # Copyright 2005 John Maddock
  4. # Copyright 2003 Vladimir Prus
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. # Jamfile which builds all the tools.
  8. project
  9. :
  10. requirements
  11. <link>static
  12. <implicit-dependency>/boost//headers
  13. :
  14. usage-requirements <implicit-dependency>/boost//headers
  15. ;
  16. use-project /boost/regression : regression/build ;
  17. TOOLS =
  18. bcp//bcp
  19. inspect/build//inspect
  20. quickbook//quickbook
  21. /boost/regression//compiler_status
  22. /boost/regression//library_status
  23. /boost/regression//process_jam_log
  24. wave/build//wave
  25. ;
  26. install dist-bin
  27. :
  28. $(TOOLS)
  29. :
  30. <install-type>EXE
  31. <location>../dist/bin
  32. :
  33. release
  34. ;
  35. install dist-lib
  36. :
  37. $(TOOLS)
  38. :
  39. <install-type>LIB
  40. <location>../dist/lib
  41. :
  42. release
  43. ;
  44. local patterns = *.dtd *.xml *.xsl LICENSE ;
  45. local dirs = boostbook/dtd boostbook/xsl ;
  46. install dist-share-boostbook
  47. :
  48. [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
  49. :
  50. <location>../dist/share
  51. <install-source-root>.
  52. ;
粤ICP备19079148号