mirror of https://github.com/google/benchmark.git
Drop down to CMake 2.8.11, and drop INTERFACE since that version doesn't
support it.
This commit is contained in:
parent
3078ce9bc5
commit
dcb1a3dad4
|
@ -1,4 +1,4 @@
|
|||
cmake_minimum_required (VERSION 2.8.12)
|
||||
cmake_minimum_required (VERSION 2.8.11)
|
||||
project (benchmark)
|
||||
|
||||
option(BENCHMARK_ENABLE_TESTING "Enable testing of the benchmark library." ON)
|
||||
|
|
|
@ -20,7 +20,7 @@ endif()
|
|||
add_library(benchmark ${SOURCE_FILES} ${RE_FILES})
|
||||
|
||||
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
|
||||
OUTPUT_NAME "benchmark"
|
||||
|
|
Loading…
Reference in New Issue