mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix typo in cmake file for IAR
Commit 5d8adab983 introduced a typo in the flag for the IAR compiler "--warnings_are_errors" is the correct flag
Signed-off-by: Robin Kastberg <robin.kastberg@iar.com>
This commit is contained in:
parent
36ad151b20
commit
e5eb33d3ab
|
|
@ -245,7 +245,7 @@ if(MBEDTLS_FATAL_WARNINGS)
|
||||||
endif(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
endif(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
||||||
|
|
||||||
if (CMAKE_COMPILER_IS_IAR)
|
if (CMAKE_COMPILER_IS_IAR)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warning_are_errors")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --warnings_are_errors")
|
||||||
endif(CMAKE_COMPILER_IS_IAR)
|
endif(CMAKE_COMPILER_IS_IAR)
|
||||||
endif(MBEDTLS_FATAL_WARNINGS)
|
endif(MBEDTLS_FATAL_WARNINGS)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue