# flashimg/vpu/CMakeLists.txt - Build script for auxiliary vpu.uf2 firmware file # # Copyright (C) 2024-2025 Luke T. Shumaker # SPDX-License-Identifier: AGPL-3.0-or-later if (PICO_PLATFORM STREQUAL "rp2040") add_executable(vpu main.c ) target_link_libraries(vpu pico_runtime pico_stdio libpicosdk ) pico_minimize_runtime(vpu INCLUDE PANIC ) pico_set_binary_type(vpu no_flash) pico_add_extra_outputs(vpu) # create .map/.bin/.hex/.uf2 files in addition to .elf pico_set_program_url(vpu "https://git.lukeshu.com/sbc-harness-firmware") endif()