Jamfile.v2 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. TOOLS =
  17. bcp//bcp
  18. inspect/build//inspect
  19. quickbook//quickbook
  20. /boost/libs/wave/tool//wave
  21. ;
  22. install dist-bin
  23. :
  24. $(TOOLS)
  25. :
  26. <install-type>EXE
  27. <location>../dist/bin
  28. :
  29. release
  30. ;
  31. install dist-lib
  32. :
  33. $(TOOLS)
  34. :
  35. <install-type>LIB
  36. <location>../dist/lib
  37. :
  38. release
  39. ;
  40. local patterns = *.dtd *.xml *.xsl LICENSE ;
  41. local dirs = boostbook/dtd boostbook/xsl ;
  42. install dist-share-boostbook
  43. :
  44. [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
  45. :
  46. <location>../dist/share
  47. <install-source-root>.
  48. ;
粤ICP备19079148号