mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
15 lines
333 B
CMake
15 lines
333 B
CMake
if (NOT TARGET hardware_sha256)
|
|
return()
|
|
endif()
|
|
|
|
add_executable(pico_sha256_test
|
|
pico_sha256_test.c
|
|
)
|
|
target_link_libraries(pico_sha256_test
|
|
pico_stdlib
|
|
pico_sha256
|
|
)
|
|
target_include_directories(pico_sha256_test PRIVATE
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
pico_add_extra_outputs(pico_sha256_test)
|