From 6b28af9f1ffac2c9fae0b9b3ff0cc335f2da473c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Tue, 5 Aug 2025 11:49:13 +0200 Subject: [PATCH] Fix missing 'W' in -Wpedantic for non-MSVC builds (#2240) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fed0436..68f881b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,7 +80,7 @@ function( vulkan_hpp__setup_warning_level ) target_compile_options( ${TARGET_NAME} PRIVATE /permissive- ) endif() else() - target_compile_options( ${TARGET_NAME} PRIVATE -Wall -Wextra -pedantic -Werror ) + target_compile_options( ${TARGET_NAME} PRIVATE -Wall -Wextra -Wpedantic -Werror ) endif() endfunction()