light/modules/test/CMakeLists.txt

8 lines
224 B
Text
Raw Normal View History

add_library_module(test test.cpp entrypoint.cpp)
2025-07-30 23:02:53 +03:30
add_library_module(fuzz_test test.cpp fuzz.cpp)
target_link_libraries(test PUBLIC logger)
target_link_libraries(fuzz_test PUBLIC logger)
add_test_module(test test.test.cpp)