mirror of https://github.com/dnomd343/md5sum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
304 B
11 lines
304 B
8 months ago
|
if (MD5_ENABLE_TESTING)
|
||
|
add_subdirectory(third_party/googletest/ EXCLUDE_FROM_ALL)
|
||
|
endif()
|
||
|
|
||
|
if (MD5_ENABLE_BENCHMARK)
|
||
|
set(BENCHMARK_ENABLE_LTO ON)
|
||
|
set(BENCHMARK_ENABLE_TESTING OFF)
|
||
|
set(BENCHMARK_ENABLE_EXCEPTIONS OFF)
|
||
|
add_subdirectory(third_party/benchmark/ EXCLUDE_FROM_ALL)
|
||
|
endif()
|