Jamfile.v2 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Boost.Flyweight tests 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. test-suite "flyweight" :
  14. [ run test_assoc_cont_factory.cpp test_assoc_cont_fact_main.cpp ]
  15. [ run test_basic.cpp test_basic_main.cpp ]
  16. [ run test_custom_factory.cpp test_custom_factory_main.cpp ]
  17. [ run test_init.cpp test_init_main.cpp ]
  18. [ run test_intermod_holder.cpp test_intermod_holder_main.cpp
  19. intermod_holder_dll
  20. : # command line
  21. : # input files
  22. : # requirements
  23. <threading>multi ]
  24. [ run test_multictor.cpp test_multictor_main.cpp ]
  25. [ run test_no_locking.cpp test_no_locking_main.cpp ]
  26. [ run test_no_tracking.cpp test_no_tracking_main.cpp ]
  27. [ run test_serialization.cpp test_serialization_main.cpp
  28. /boost/serialization//boost_serialization/<link>static ]
  29. [ run test_set_factory.cpp test_set_factory_main.cpp ]
  30. ;
  31. lib intermod_holder_dll : intermod_holder_dll.cpp :
  32. <link>shared
  33. <define>BOOST_FLYWEIGHT_TEST_INTERMOD_HOLDER_DLL_SOURCE=1 ;