Compare commits

...

6 Commits

View File

@@ -45,8 +45,6 @@ endif()
message(STATUS "Compiling FSFW for the ${OS_FSFW_NAME} operating system.") message(STATUS "Compiling FSFW for the ${OS_FSFW_NAME} operating system.")
add_subdirectory(action) add_subdirectory(action)
add_subdirectory(container) add_subdirectory(container)
add_subdirectory(controller) add_subdirectory(controller)
@@ -114,15 +112,15 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(FSFW_WARNING_FLAGS set(FSFW_WARNING_FLAGS
-Wall -Wall
-Wextra -Wextra
-Wshadow=local
-Wimplicit-fallthrough=1 -Wimplicit-fallthrough=1
-Wno-unused-parameter -Wno-unused-parameter
-Wno-psabi -Wno-psabi
) )
endif()
if(FSFW_WARNING_SHADOW_LOCAL_GCC)
list(APPEND WARNING_FLAGS "-Wshadow=local") if(FSFW_WARNING_SHADOW_LOCAL_GCC)
endif() list(APPEND WARNING_FLAGS "-Wshadow=local")
endif()
endif() endif()