From 7c464a06325a41459d56701816d8e6da1f797e99 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 17 Jan 2025 19:59:50 +0100 Subject: [PATCH] Add double-promotion and pedantic warnings to CMake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22910509..eabfb5d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ target_include_directories(RadioLib set_property(TARGET RadioLib PROPERTY CXX_STANDARD 20) # enable most warnings -target_compile_options(RadioLib PRIVATE -Wall -Wextra) +target_compile_options(RadioLib PRIVATE -Wall -Wextra -Wpedantic -Wdouble-promotion) include(GNUInstallDirs)