Implement Parser1, simple recursive descent

This commit is contained in:
2025-05-12 13:16:16 -04:00
parent f1acb2d0a0
commit 9e56aa9612
2 changed files with 471 additions and 6 deletions

View File

@@ -31,9 +31,6 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
include(CTest)
include(doctest)
add_executable(bench src/bench.cpp)
target_link_libraries(bench PRIVATE nanobench)
add_executable(mytest src/test.cpp)
target_link_libraries(mytest PRIVATE doctest)
target_link_libraries(mytest PRIVATE doctest nanobench)
doctest_discover_tests(mytest)