Jamfile 746 B

1234567891011121314151617181920212223242526272829303132333435
  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. <define>BOOST_ALL_NO_LIB=1
  10. :
  11. release
  12. ;
  13. exe compiler_status
  14. :
  15. ../compiler_status.cpp ../detail/tiny_xml.cpp
  16. <lib>../../../libs/filesystem/build/boost_filesystem
  17. :
  18. <sysinclude>$(BOOST_ROOT)
  19. <define>BOOST_ALL_NO_LIB=1
  20. :
  21. release
  22. ;
  23. stage run
  24. :
  25. <exe>process_jam_log
  26. <exe>compiler_status
  27. :
  28. :
  29. release
  30. <suppress>true
  31. ;
粤ICP备19079148号