Jamfile.v2 645 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Regression test status reporting tools build Jamfile
  2. exe process_jam_log
  3. :
  4. ../process_jam_log.cpp ../detail/tiny_xml.cpp
  5. /boost/filesystem//boost_filesystem
  6. :
  7. :
  8. release
  9. ;
  10. exe compiler_status
  11. :
  12. ../compiler_status.cpp ../detail/tiny_xml.cpp
  13. /boost/filesystem//boost_filesystem
  14. :
  15. :
  16. release
  17. ;
  18. install dist-bin
  19. :
  20. process_jam_log
  21. compiler_status
  22. :
  23. <install-type>EXE
  24. <location>../../../dist/bin
  25. :
  26. release
  27. ;
  28. install dist-lib
  29. :
  30. process_jam_log
  31. compiler_status
  32. :
  33. <install-type>LIB
  34. <location>../../../dist/lib
  35. :
  36. release
  37. ;
粤ICP备19079148号