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.
14 lines
348 B
14 lines
348 B
if (MD5_ENABLE_TESTING)
|
|
if (MSVC)
|
|
set(gtest_force_shared_crt ON)
|
|
endif()
|
|
add_subdirectory(third_party/googletest/ EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|
|
if (MD5_ENABLE_BENCHMARK)
|
|
if (NOT MSVC)
|
|
set(BENCHMARK_ENABLE_EXCEPTIONS OFF)
|
|
endif()
|
|
set(BENCHMARK_ENABLE_TESTING OFF)
|
|
add_subdirectory(third_party/benchmark/ EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|