1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
find_package(Catch2 QUIET)
if (Catch2_FOUND)
message("Using system supplied version of Catch2")
else()
message("Using FetchContent to load Catch2")
include(FetchContent)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v2.13.10
)
FetchContent_MakeAvailable(Catch2)
set(Catch2_VERSION "2.13.10")
endif()
if (RAPIDFUZZ_ENABLE_LINTERS)
# include aminya & jason turner's C++ best practices recommended cmake project utilities
message("Enable Linters on test build")
include(FetchContent)
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.20)
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.26.2.zip)
else()
FetchContent_Declare(_project_options URL https://github.com/aminya/project_options/archive/refs/tags/v0.25.2.zip)
endif()
FetchContent_MakeAvailable(_project_options)
include(${_project_options_SOURCE_DIR}/Index.cmake)
project_options(
# ENABLE_CACHE
# ENABLE_CONAN
WARNINGS_AS_ERRORS
# ENABLE_CPPCHECK
# ENABLE_CLANG_TIDY
# ENABLE_INCLUDE_WHAT_YOU_USE
# ENABLE_COVERAGE
# ENABLE_PCH
# PCH_HEADERS <Eigen/Dense> <fmt/core.h> <vector> <utility> <string> <string_view>
# ENABLE_DOXYGEN
# ENABLE_IPO
# ENABLE_USER_LINKER
# ENABLE_BUILD_WITH_TIME_TRACE
# ENABLE_UNITY
# ENABLE_SANITIZER_ADDRESS
# ENABLE_SANITIZER_LEAK
# ENABLE_SANITIZER_UNDEFINED_BEHAVIOR
# ENABLE_SANITIZER_THREAD
# ENABLE_SANITIZER_MEMORY
# CLANG_WARNINGS "-Weverything"
)
endif()
function(rapidfuzz_add_test test)
if(Catch2_VERSION VERSION_LESS "3.0")
add_executable(test_${test} tests-main.cpp tests-${test}.cpp)
target_link_libraries(test_${test} PRIVATE Catch2::Catch2)
target_compile_definitions(test_${test} PRIVATE CATCH2_VERSION=2)
else()
add_executable(test_${test} tests-${test}.cpp)
target_link_libraries(test_${test} PRIVATE Catch2::Catch2WithMain)
target_compile_definitions(test_${test} PRIVATE CATCH2_VERSION=3)
endif()
target_link_libraries(test_${test} PRIVATE ${PROJECT_NAME})
if (RAPIDFUZZ_ENABLE_LINTERS)
target_link_libraries(test_${test} PRIVATE project_warnings)
endif()
add_test(NAME ${test} COMMAND test_${test})
endfunction()
rapidfuzz_add_test(fuzz)
rapidfuzz_add_test(common)
add_subdirectory(distance)
|