Files
plct-lab/counter/tests/CMakeLists.txt
2025-05-19 21:26:47 +08:00

11 lines
203 B
CMake

enable_testing()
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} TEST_SRC)
add_executable(
counter_tests
${TEST_SRC}
)
target_link_libraries(counter_tests GTest::gtest_main libcount)