Blame view

3rdparty/boost_1_81_0/libs/endian/benchmark/Jamfile.v2 614 Bytes
977ed18d   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  # Build and install benchmark programs
   
  # Copyright Beman Dawes 2013
  # Distributed under the Boost Software License, Version 1.0.
  # See www.boost.org/LICENSE_1_0.txt
  
  project 
      : source-location ../test    : requirements
        <toolset>msvc:<asynch-exceptions>on
        <library>/boost/timer//boost_timer
      ;
  
  SOURCES = speed_test speed_test_functions ;
      
  exe "speed_test"
         : $(SOURCES).cpp 
         : <toolset>gcc:<cxxflags>-march=native 
         ;
  
  exe "loop_time_test"  
         : loop_time_test.cpp 
         : <toolset>gcc:<cxxflags>-march=native 
         ;
  
  install bin : speed_test loop_time_test ;