Jamfile.v2 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Boost Filesystem test/issues Jamfile
  2. # Copyright Beman Dawes 2014
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # See www.boost.org/LICENSE_1_0.txt
  5. # Library home page: http://www.boost.org/libs/filesystem
  6. project
  7. : requirements
  8. <library>/boost/filesystem//boost_filesystem
  9. <link>static
  10. ;
  11. test-suite "filesystem-issues" :
  12. # [ run 9054_static_const_codecvt_segfault_pre_main.cpp
  13. # : : : <link>shared : 9054_shared ]
  14. # [ run 9054_static_const_codecvt_segfault_pre_main.cpp
  15. # : : : <link>static : 9054_static ]
  16. # [ run hello_filesystem.cpp
  17. # : : : <link>shared : hello_shared ]
  18. # [ run hello_filesystem.cpp
  19. # : : : <link>static : hello_static ]
  20. # [ run 9219.cpp
  21. # : : : <link>shared : 9219_shared ]
  22. # [ run 9219.cpp
  23. # : : : <link>static : 9219_static ]
  24. # [ run 10485.cpp
  25. # : : : <link>shared <test-info>always_show_run_output ]
  26. # [ run copy_file-compilation-error-2015-05-04.cpp ]
  27. [ run 6638-convert_aux-fails-init-global.cpp
  28. : : : <link>shared : 6638_shared ]
  29. [ run 6638-convert_aux-fails-init-global.cpp
  30. : : : <link>static : 6638_static ]
  31. ;