From 97e58da31362f180642a381f9ea55aee04546c83 Mon Sep 17 00:00:00 2001 From: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> Date: Tue, 28 Mar 2023 14:28:47 +0530 Subject: [PATCH] Remove C90 requirement from CMakeLists (#649) This is needed as it is breaking projects - https://forums.freertos.org/t/freertos-gcc-cmake/16984 We will re-evaluate and accordingly add this later. Signed-off-by: Gaurav Aggarwal --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d83db88b9c..d45de64b1b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -292,5 +292,3 @@ target_link_libraries(freertos_kernel ) ######################################################################## -# Requirements -set_property(TARGET freertos_kernel PROPERTY C_STANDARD 90)