Jamfile.v2 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Boost.MultiIndex examples Jamfile
  2. #
  3. # Copyright 2003-2007 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/multi_index for library home page.
  9. exe basic
  10. : basic.cpp
  11. : <include>$(BOOST_ROOT)
  12. ;
  13. exe bimap
  14. : bimap.cpp
  15. : <include>$(BOOST_ROOT)
  16. ;
  17. exe complex_structs
  18. : complex_structs.cpp
  19. : <include>$(BOOST_ROOT)
  20. ;
  21. exe composite_keys
  22. : composite_keys.cpp
  23. : <include>$(BOOST_ROOT)
  24. ;
  25. exe fun_key
  26. : fun_key.cpp
  27. : <include>$(BOOST_ROOT)
  28. ;
  29. exe hashed
  30. : hashed.cpp
  31. : <include>$(BOOST_ROOT)
  32. ;
  33. exe ip_allocator
  34. : ip_allocator.cpp
  35. : <include>$(BOOST_ROOT) <threading>multi
  36. ;
  37. exe non_default_ctor
  38. : non_default_ctor.cpp
  39. : <include>$(BOOST_ROOT)
  40. ;
  41. exe random_access
  42. : random_access.cpp
  43. : <include>$(BOOST_ROOT)
  44. ;
  45. exe rearrange
  46. : rearrange.cpp
  47. : <include>$(BOOST_ROOT)
  48. ;
  49. exe sequenced
  50. : sequenced.cpp
  51. : <include>$(BOOST_ROOT)
  52. ;
  53. exe serialization
  54. : serialization.cpp
  55. /boost/serialization//boost_serialization
  56. : <include>$(BOOST_ROOT)
  57. ;