Jamfile.v2 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Boost.Flyweight examples Jamfile
  2. #
  3. # Copyright 2006-2014 Joaquín M López Muñoz.
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. #
  8. # See http://www.boost.org/libs/flyweight for library home page.
  9. project
  10. : requirements
  11. <os>LINUX:<threading>multi
  12. ;
  13. exe basic
  14. : basic.cpp
  15. : <include>$(BOOST_ROOT)
  16. ;
  17. exe composite
  18. : composite.cpp
  19. : <include>$(BOOST_ROOT)
  20. ;
  21. exe custom_factory
  22. : custom_factory.cpp
  23. : <include>$(BOOST_ROOT)
  24. ;
  25. exe fibonacci
  26. : fibonacci.cpp
  27. : <include>$(BOOST_ROOT)
  28. ;
  29. exe html
  30. : html.cpp
  31. : <include>$(BOOST_ROOT)
  32. ;
  33. exe key_value
  34. : key_value.cpp
  35. : <include>$(BOOST_ROOT)
  36. ;
  37. exe perf
  38. : perf.cpp
  39. : <include>$(BOOST_ROOT)
  40. : release
  41. ;
  42. exe serialization
  43. : serialization.cpp
  44. /boost/serialization//boost_serialization/<link>static
  45. : <include>$(BOOST_ROOT)
  46. ;