зеркало из https://github.com/microsoft/merklecpp.git
48 строки
1.4 KiB
CMake
48 строки
1.4 KiB
CMake
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
function(add_merklecpp_test target source)
|
|
add_unit_test(${MERKLECPP_TEST_PREFIX}${target} ${source})
|
|
set_tests_properties(
|
|
${MERKLECPP_TEST_PREFIX}${target} PROPERTIES LABELS "merklecpp"
|
|
)
|
|
if (DOCTEST_DIR)
|
|
target_include_directories(
|
|
${MERKLECPP_TEST_PREFIX}${target} PRIVATE ${DOCTEST_DIR}
|
|
)
|
|
endif()
|
|
if (WIN32)
|
|
target_compile_definitions(${MERKLECPP_TEST_PREFIX}${target} PRIVATE _CRT_SECURE_NO_WARNINGS)
|
|
endif()
|
|
endfunction()
|
|
|
|
add_merklecpp_test(demo_tree demo_tree.cpp)
|
|
add_merklecpp_test(time_large_trees time_large_trees.cpp)
|
|
add_merklecpp_test(paths paths.cpp)
|
|
add_merklecpp_test(flush flush.cpp)
|
|
add_merklecpp_test(retract retract.cpp)
|
|
add_merklecpp_test(past_root past_root.cpp)
|
|
add_merklecpp_test(past_paths past_paths.cpp)
|
|
add_merklecpp_test(serialisation serialisation.cpp)
|
|
add_merklecpp_test(partial_serialisation partial_serialisation.cpp)
|
|
add_merklecpp_test(serialise_to_file serialise_to_file.cpp)
|
|
|
|
if(TARGET evercrypt.host)
|
|
add_merklecpp_test(compare_evercrypt compare_evercrypt.cpp)
|
|
endif()
|
|
|
|
if(OPENSSL
|
|
OR MBEDTLS
|
|
OR EVERCRYPT
|
|
)
|
|
add_merklecpp_test(compare_hash_functions compare_hash_functions.cpp)
|
|
endif()
|
|
|
|
find_path(DOCTEST_DIR doctest.h)
|
|
|
|
if(DOCTEST_DIR)
|
|
add_merklecpp_test(unit_tests unit_tests.cpp)
|
|
endif()
|