From 2c4a17cc49fa0241df1d4566e085185bcb9b66d1 Mon Sep 17 00:00:00 2001 From: Mike Bell Date: Sat, 10 Aug 2024 23:28:03 +0100 Subject: [PATCH] Enable warning as error --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49e142e..1d7abe8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_CXX_STANDARD 17) # Initialize the SDK pico_sdk_init() -#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror") list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) include(pico_dvhstx.cmake)