Jamfile.jam 534 B

123456789101112131415161718192021222324
  1. # Boost.TypeErasure library
  2. #
  3. # Copyright 2011 Steven Watanabe
  4. #
  5. # Distributed under the Boost Software License version 1.0. (See
  6. # accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. import testing ;
  9. compile basic.cpp ;
  10. compile multi.cpp ;
  11. compile convert.cpp ;
  12. compile references.cpp ;
  13. compile custom.cpp ;
  14. compile construction.cpp ;
  15. compile concept_map.cpp ;
  16. compile compose.cpp ;
  17. compile overload.cpp ;
  18. compile associated.cpp ;
  19. run print_sequence.cpp ;
  20. run printf.cpp ;
  21. run multifunction.cpp ;