adds a CMakeLists.txt message to indicate board selection

This commit is contained in:
Eyck Jentzsch 2023-10-27 22:16:21 +02:00
parent 63f57b9ba1
commit 7093e47c08
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@ endif()
if (NOT DEFINED ISA)
set(ISA imc)
endif()
message(STATUS "Building firmware using ${BOARD} board configuration")
add_custom_target(fw-hello-world ALL
COMMAND make -C ${riscvfw_SOURCE_DIR}/hello-world BOARD=${BOARD} ISA=${ISA}
USES_TERMINAL