Jamfile.v2 923 B

1234567891011121314151617181920212223242526272829
  1. #==============================================================================
  2. # Copyright (c) 2012-2019 Antony Polukhin
  3. #
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #==============================================================================
  7. # performance tests
  8. import testing ;
  9. import path ;
  10. path-constant TEST_DIR : . ;
  11. project performance/test
  12. : source-location ./
  13. : requirements
  14. # <library>/boost/chrono//boost_chrono
  15. # <library>/boost/system//boost_system
  16. <link>static
  17. <target-os>freebsd:<linkflags>"-lrt"
  18. <target-os>linux:<linkflags>"-lrt"
  19. <toolset>gcc:<cxxflags>-fvisibility=hidden
  20. <toolset>intel-linux:<cxxflags>-fvisibility=hidden
  21. <toolset>sun:<cxxflags>-xldscope=hidden
  22. : default-build release
  23. ;
  24. run move_perf.cpp : $(TEST_DIR) ;