tests/CMakeLists.txt

Tue, 21 Mar 2023 17:21:20 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 21 Mar 2023 17:21:20 +0100
changeset 668
d7129285ac32
parent 656
2ccb9f881420
child 691
65baf7f45ac8
permissions
-rw-r--r--

add CX_STORE_POINTERS special item size for maps

# Use C++ for Testing
set(CMAKE_CXX_STANDARD 17)

# Load Google Test Framework
set(INSTALL_GTEST OFF)
set(BUILD_GMOCK OFF)
include(FetchContent)
FetchContent_Declare(
        googletest
        GIT_REPOSITORY https://github.com/google/googletest.git
        GIT_TAG e2239ee6043f73722e7aa812a459f54a28552929 # release 1.11.0
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
include(GoogleTest)
message(STATUS "Google Test made available")

add_executable(ucxtest
        test_utils.cpp
        test_allocator.cpp
        test_compare.cpp
        test_string.cpp
        test_buffer.cpp
        test_list.cpp
        test_tree.cpp
        test_hash_key.cpp
        test_map.cpp
        test_basic_mempool.cpp
        test_printf.cpp
        selftest.cpp
        util_allocator.cpp
        )
target_link_libraries(ucxtest PRIVATE ucx_static gtest_main)
gtest_discover_tests(ucxtest)

mercurial