diff options
author | Oxore <oxore@protonmail.com> | 2023-03-05 21:37:31 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-03-05 21:41:19 +0300 |
commit | 1e78222d516089462a7c3d1de23604e81851eec2 (patch) | |
tree | 093566222e05f229e53e1ad0e01330e47b046274 /CMakeLists.txt | |
parent | ea807de65b0485ac58b6eae576209c64d4d5c4e9 (diff) |
Fix warnings, part 1
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 93cca90..c50deb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,6 +80,9 @@ set(nixie_clock_sources "app/platform/stm32f0-gcc/startup/startup.cpp" ) +set_source_files_properties("third_party/FreeRTOS/queue.c" PROPERTIES + COMPILE_FLAGS -Wno-cast-align) + add_executable(${PROJECT_NAME} ${nixie_clock_sources} ) @@ -132,7 +135,6 @@ target_compile_options(${PROJECT_NAME} PRIVATE -g3 -Wall -Wextra - -pedantic -Wcast-align -Wshadow -Wlogical-op |