updated to be more consistant with test file naming

This commit is contained in:
jakeg00dwin 2024-03-20 14:03:15 -07:00
parent 8cc19edbe3
commit bdc62f3224
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
# TEST_RUNNER
add_library(module_name_test
module_name.cpp
add_library(test_module_name
test_module_name.cpp
)
target_link_libraries(module_name_test
target_link_libraries(test_module_name
${CPPUTEST_LIBRARIES}/libCppUTest.a
${CPPUTEST_LIBRARIES}/libCppUTestExt.a
module_name
)
target_include_directories(module_name_test
target_include_directories(test_module_name
module_name
)