Jamfile.v2 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # (C) Copyright 2010 Bryce Lelbach
  4. #
  5. # Use, modification and distribution is subject to the Boost Software License,
  6. # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. #
  9. ################################################################################
  10. project bsl-xml-benchmark ;
  11. exe int4_test : int4_test.cpp
  12. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  13. exe int16_test : int16_test.cpp
  14. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  15. exe int64_test : int64_test.cpp
  16. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  17. exe int256_test : int256_test.cpp
  18. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  19. exe string4_test : string4_test.cpp
  20. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  21. exe string16_test : string16_test.cpp
  22. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  23. exe string64_test : string64_test.cpp
  24. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;
  25. exe string256_test : string256_test.cpp
  26. : <toolset>gcc:<linkflags>"-lrt -lboost_serialization" ;