From de681e68c31caf9fc3d0b7e5ef459d3fd81f5e4a Mon Sep 17 00:00:00 2001 From: Robert May Date: Wed, 18 Nov 2015 23:04:59 +0000 Subject: [PATCH] Add diagnostic message to yotta/cmake output to remind us that we have silenced warnings. --- source/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 47faf72..d77a320 100755 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -83,6 +83,7 @@ target_link_libraries(microbit-dal ) if(CMAKE_COMPILER_IS_GNUCC) + message("suppressing warnings from mbed-classic, ble & ble-nrf51822") target_compile_options(mbed-classic PRIVATE "-w") target_compile_options(ble PRIVATE "-w") target_compile_options(ble-nrf51822 PRIVATE "-w")