From 1c9e99e77672154dc1a83a37f27b00f7ae093509 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Tue, 6 Jan 2026 20:39:37 +0100 Subject: [PATCH] CMake: Remove hard-coded -std=c11 and -std=c++17 --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f1f09b37..5dc97ecb6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,8 +84,6 @@ if(MSVC) list(APPEND COMPILE_OPTIONS -MP -W4 -wd4702) else() list(APPEND COMPILE_OPTIONS - $<$:-std=c11> - $<$:-std=c++17> -Wall -Wextra -Wpedantic