Files
Calculator/test/CMakeLists.txt

11 lines
197 B
CMake
Raw Normal View History

2026-02-28 13:59:02 -06:00
find_package(cmocka REQUIRED)
add_executable(test_parser test_parser.c)
target_link_libraries(test_parser
calculator_lib
cmocka::cmocka
)
add_test(NAME parser_tests COMMAND test_parser)