summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorhathach <[email protected]>2025-10-14 20:51:49 +0700
committerhathach <[email protected]>2025-10-14 23:02:32 +0700
commit367044e4873fc9ca9cdac918cee684e1e08216e0 (patch)
tree4ae740db975c5df02ad488f144026150b889796f /examples
parent4bdd08ed2dacaf22ce2a442f8e13c97b03dfc2cb (diff)
fix lots of warnings for missing-prototypes for irqhandler
Diffstat (limited to 'examples')
-rw-r--r--examples/host/msc_file_explorer/CMakeLists.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/host/msc_file_explorer/CMakeLists.txt b/examples/host/msc_file_explorer/CMakeLists.txt
index 95d532fc9..e9c15b7c1 100644
--- a/examples/host/msc_file_explorer/CMakeLists.txt
+++ b/examples/host/msc_file_explorer/CMakeLists.txt
@@ -28,9 +28,7 @@ target_sources(${PROJECT} PUBLIC
# Suppress warnings on fatfs
if (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
- set_source_files_properties(
- ${TOP}/lib/fatfs/source/ff.c
- PROPERTIES
+ set_source_files_properties(${TOP}/lib/fatfs/source/ff.c PROPERTIES
COMPILE_FLAGS "-Wno-conversion -Wno-cast-qual"
)
endif ()