From 7093e47c08499aaa985f4fc5cc35433b03d38915 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Fri, 27 Oct 2023 22:16:21 +0200 Subject: [PATCH] adds a CMakeLists.txt message to indicate board selection --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 12cd66f..cb6ffae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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