gadget-kempston/pico-sdk/test/pico_time_test/CMakeLists.txt
2023-12-18 12:34:09 +01:00

8 lines
No EOL
314 B
CMake

if (NOT PICO_TIME_NO_ALARM_SUPPORT)
add_executable(pico_time_test pico_time_test.c)
target_compile_definitions(pico_time_test PRIVATE
PICO_TIME_DEFAULT_ALARM_POOL_MAX_TIMERS=250
)
target_link_libraries(pico_time_test PRIVATE pico_test)
pico_add_extra_outputs(pico_time_test)
endif()