library_test.bat 598 B

123456789101112131415161718192021
  1. @echo off
  2. rem Copyright Robert Ramey 2007
  3. rem Distributed under the Boost Software License, Version 1.0.
  4. rem See http://www.boost.org/LICENSE_1_0.txt
  5. if not "%1" == "" goto bjam
  6. echo Usage: %0 "<bjam arguments>"
  7. echo where typical bjam arguements are:
  8. echo toolset=msvc-7.1,gcc
  9. echo variant=debug,release,profile
  10. echo link=static,shared
  11. echo threading=single,multi
  12. echo -sBOOST_ARCHIVE_LIST="<archive name>"
  13. goto end
  14. :bjam
  15. bjam --dump-tests %* >bjam.log 2>&1
  16. process_jam_log --v2 <bjam.log
  17. library_status library_status.html links.html
  18. :end
粤ICP备19079148号