We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92b810 commit f35c421Copy full SHA for f35c421
examples/build_system/cmake/toolchain/arm_iar.cmake
@@ -20,7 +20,12 @@ find_program(CMAKE_IAR_REPORT ireport)
20
21
if (IAR_CSTAT)
22
cmake_minimum_required(VERSION 4.1)
23
-set(CMAKE_C_ICSTAT ${CMAKE_IAR_CSTAT} --checks=${CMAKE_CURRENT_LIST_DIR}/cstat_sel_checks.txt --db=${CMAKE_BINARY_DIR}/cstat.db --sarif_dir=${CMAKE_BINARY_DIR}/cstat_sarif)
+set(CMAKE_C_ICSTAT ${CMAKE_IAR_CSTAT}
24
+ --checks=${CMAKE_CURRENT_LIST_DIR}/cstat_sel_checks.txt
25
+ --db=${CMAKE_BINARY_DIR}/cstat.db
26
+ --sarif_dir=${CMAKE_BINARY_DIR}/cstat_sarif
27
+ --exclude ${TOP}/hw/mcu --exclude ${TOP}/lib
28
+ )
29
endif ()
30
31
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
0 commit comments