forked from ericniebler/range-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgbenchmark.cmake
More file actions
26 lines (21 loc) · 931 Bytes
/
Copy pathgbenchmark.cmake
File metadata and controls
26 lines (21 loc) · 931 Bytes
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
26
# Download and unpack googletest at configure time
configure_file(
cmake/GoogleBenchmark.cmake.in
google-benchmark-download/CMakeLists.txt)
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/google-benchmark-download)
if(result)
message(FATAL_ERROR "CMake step for google-benchmark failed: ${result}")
endif()
execute_process(COMMAND ${CMAKE_COMMAND} --build .
RESULT_VARIABLE result
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/google-benchmark-download)
if(result)
message(FATAL_ERROR "Build step for google-benchmark failed: ${result}")
endif()
# Add google-benchmark directly to our build. This defines
# the benchmark and benchmark_main targets.
add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/google-benchmark-src
${CMAKE_CURRENT_BINARY_DIR}/google-benchmark-build
EXCLUDE_FROM_ALL)