Commit dcb1a3da by Geoff Romer Committed by Dominic Hamon

Drop down to CMake 2.8.11, and drop INTERFACE since that version doesn't

support it.
parent 3078ce9b
cmake_minimum_required (VERSION 2.8.12) cmake_minimum_required (VERSION 2.8.11)
project (benchmark) project (benchmark)
option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON) option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON)
......
...@@ -20,7 +20,7 @@ endif() ...@@ -20,7 +20,7 @@ endif()
add_library(benchmark ${SOURCE_FILES} ${RE_FILES}) add_library(benchmark ${SOURCE_FILES} ${RE_FILES})
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
target_link_libraries(benchmark INTERFACE ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries(benchmark ${CMAKE_THREAD_LIBS_INIT})
set_target_properties(benchmark PROPERTIES set_target_properties(benchmark PROPERTIES
OUTPUT_NAME "benchmark" OUTPUT_NAME "benchmark"
......
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