cmake_minimum_required(VERSION 3.20)

project(tests)
set(C_TEST c_test)
set(CPP_TEST cpp_test)

add_executable(${C_TEST} rsvp_test.cpp)
target_link_libraries(${C_TEST} rsvp)

add_executable(${CPP_TEST}pp testpp.cpp)
target_link_libraries(${CPP_TEST}pp rsvppp)

# include(GoogleTest)
# gtest_discover_tests(${C_TEST})