removed dead code

This commit is contained in:
jakeg00dwin 2024-03-15 14:19:17 -07:00
parent 738c875bc6
commit 46da670968
1 changed files with 1 additions and 14 deletions

View File

@ -37,19 +37,6 @@ set(CMAKE_CXX_FLAGS "-Wall -Werror -Wpedantic")
# TESTING STUFF # TESTING STUFF
# ####################################### # #######################################
# find_library()
set(CPPUTEST_INC_DIR "./cpputest/include")
set(CPPUTEST_LIB "./cpputest/build/src/CppUTest/libCppUTest.a")
# include_directories(
# ${CPPUTEST_DIR}
# ${CPPUTEST_DIR}/CppUTest
# ${CPPUTEST_DIR}/CppUTestExt
# )
#
# add_library(CppUTest OBJECT
# ${CPPUTEST_LIB}
# )
if (UNIT_TESTING) if (UNIT_TESTING)
@ -70,7 +57,7 @@ if (UNIT_TESTING)
) )
link_directories(${CPPUTEST_LIBRARIES}) link_directories(${CPPUTEST_LIBRARIES})
message(STATUS "CPPUTEST_DIR: ${CPPUTEST_DIR}") # message(STATUS "CPPUTEST_DIR: ${CPPUTEST_DIR}")
add_subdirectory(tests) add_subdirectory(tests)
endif() endif()