Commit 254a6744 authored by Kevin M. Godby's avatar Kevin M. Godby

Fixed boost.log benchmark build.

parent 2132fe0e
...@@ -32,7 +32,7 @@ function(add_benchmark _target) ...@@ -32,7 +32,7 @@ function(add_benchmark _target)
) )
if(_benchmark_DEFINITIONS) if(_benchmark_DEFINITIONS)
target_compile_definitions(${_target} ${_benchmark_DEFINITIONS}) target_compile_definitions(${_target} PUBLIC ${_benchmark_DEFINITIONS})
endif() endif()
add_test(NAME test_benchmark_${_target} COMMAND ${_target}) add_test(NAME test_benchmark_${_target} COMMAND ${_target})
...@@ -50,8 +50,9 @@ endif() ...@@ -50,8 +50,9 @@ endif()
find_package(Boost QUIET COMPONENTS log) find_package(Boost QUIET COMPONENTS log)
if(Boost_FOUND) if(Boost_FOUND)
add_benchmark(boost-bench LIBS ${Boost_LIBRARIES} INCLUDES ${Boost_INCLUDE_DIRS}) set(BOOST_DEFS "-DBOOST_LOG_DYN_LINK=1")
add_benchmark(boost-bench-mt LIBS ${Boost_LIBRARIES} INCLUDES ${Boost_INCLUDE_DIRS}) add_benchmark(boost-bench LIBS ${Boost_LIBRARIES} INCLUDES ${Boost_INCLUDE_DIRS} DEFINITIONS ${BOOST_DEFS})
add_benchmark(boost-bench-mt LIBS ${Boost_LIBRARIES} INCLUDES ${Boost_INCLUDE_DIRS} DEFINITIONS ${BOOST_DEFS})
endif() endif()
find_package(glog QUIET) find_package(glog QUIET)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment