- moved an inline remapping function to the implementation part of doctest
- no longer overriding the cmake add_test function (a friend of mine told me not to)
diff --git a/examples/stringification/CMakeLists.txt b/examples/stringification/CMakeLists.txt
index 5882f45..6984911 100644
--- a/examples/stringification/CMakeLists.txt
+++ b/examples/stringification/CMakeLists.txt
@@ -9,4 +9,4 @@
add_executable(${PROJECT_NAME} main.cpp)
-add_test(NAME ${PROJECT_NAME} COMMAND $<TARGET_FILE:${PROJECT_NAME}>)
+doctest_add_test(NAME ${PROJECT_NAME} COMMAND $<TARGET_FILE:${PROJECT_NAME}>)