Do I really have to sign every minor change

This commit is contained in:
Xieamoe 2024-02-14 03:49:45 -08:00
parent ef3db947b4
commit 26b4b518d6
No known key found for this signature in database
GPG key ID: 5B82D290CCD94C6D

View file

@ -17,19 +17,19 @@ endif() #Adds Catch2::Catch2
include(CTest)
if ( ${GUIX} )
include(Catch.cmake)
else()
include(Catch)
endif()
add_executable(tests tests.cpp test_cases.cpp test_cases.h)
target_compile_features(tests PRIVATE cxx_std_23)
# Should be linked to the rdricpp library, as well as the Catch2 testing library
if ( ${GUIX} )
include(Catch.cmake)
target_link_libraries(tests PRIVATE rdricpp Catch2Main Catch2)
else()
include(Catch)
target_link_libraries(tests PRIVATE rdricpp Catch2::Catch2WithMain)
endif()
catch_discover_tests(tests)
add_test(NAME Test COMMAND tests)