Jamfile 676 B

123456789101112131415161718192021222324252627282930313233
  1. # Regression test status reporting tools build Jamfile
  2. subproject tools/regression/build ;
  3. exe process_jam_log
  4. :
  5. ../process_jam_log.cpp ../detail/tiny_xml.cpp
  6. <lib>../../../libs/filesystem/build/boost_filesystem
  7. :
  8. <sysinclude>$(BOOST_ROOT)
  9. :
  10. release
  11. ;
  12. exe compiler_status
  13. :
  14. ../compiler_status.cpp ../detail/tiny_xml.cpp
  15. <lib>../../../libs/filesystem/build/boost_filesystem
  16. :
  17. <sysinclude>$(BOOST_ROOT)
  18. :
  19. release
  20. ;
  21. stage run
  22. :
  23. <exe>process_jam_log
  24. <exe>compiler_status
  25. :
  26. :
  27. release
  28. <suppress>true
  29. ;
粤ICP备19079148号