Skip to content

Commit b6f812f

Browse files
authored
Change various (confusing to user) message to be DEBUG only (#365)
1 parent b7da70a commit b6f812f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmake/pico_pre_load_toolchain.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ if (DEFINED PICO_COMPILER)
3636
select one from \"cmake/toolchains\" folder.")
3737
endif ()
3838
endif ()
39+
message("PICO compiler is ${PICO_COMPILER}")
3940
endif ()
4041

41-
message("PICO compiler is ${PICO_COMPILER}")
4242
unset(PICO_COMPILER CACHE)
4343

docs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
find_package(Doxygen)
1+
find_package(Doxygen QUIET)
22
if (PICO_SDK_TOP_LEVEL_PROJECT AND ${DOXYGEN_FOUND})
33
set(PICO_BUILD_DOCS_DEFAULT 1)
44
endif()

tools/FindELF2UF2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (NOT ELF2UF2_FOUND)
2222
set(ELF2UF2_TARGET ELF2UF2)
2323

2424
if (NOT TARGET ${ELF2UF2_BUILD_TARGET})
25-
message("ELF2UF2 will need to be built")
25+
message(DEBUG "ELF2UF2 will need to be built")
2626
ExternalProject_Add(${ELF2UF2_BUILD_TARGET}
2727
PREFIX elf2uf2 SOURCE_DIR ${ELF2UF2_SOURCE_DIR}
2828
BINARY_DIR ${ELF2UF2_BINARY_DIR}

tools/FindPioasm.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (NOT Pioasm_FOUND)
2222
set(Pioasm_TARGET Pioasm)
2323

2424
if (NOT TARGET ${PioasmBuild_TARGET})
25-
message("PIOASM will need to be built")
25+
message(DEBUG "PIOASM will need to be built")
2626
# message("Adding external project ${PioasmBuild_Target} in ${CMAKE_CURRENT_LIST_DIR}}")
2727
ExternalProject_Add(${PioasmBuild_TARGET}
2828
PREFIX pioasm SOURCE_DIR ${PIOASM_SOURCE_DIR}

0 commit comments

Comments
 (0)