17 lines
328 B
CMake
17 lines
328 B
CMake
add_library(zero_cross_detection STATIC
|
|
zero_cross_detection.c
|
|
)
|
|
target_include_directories(zero_cross_detection PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
|
|
if(UNIT_TESTING)
|
|
target_link_libraries(zero_cross_detection
|
|
MockADC
|
|
)
|
|
else()
|
|
target_link_libraries(zero_cross_detection
|
|
ADC
|
|
)
|
|
endif()
|