Change-Id: I50fa2b2252574420d08d26b6015d4abb8bbf04ca
ADD_DEFINITIONS("-pedantic") # Be pedantic
ADD_DEFINITIONS("-pedantic-errors") # Make pedantic warnings into errors
ADD_DEFINITIONS("-Wshadow")
+ADD_DEFINITIONS("-Wno-array-bounds") # To avoid issues from gcc13 default compiler option
+ADD_DEFINITIONS("-Wno-stringop-overflow") # To avoid issues from gcc13 default compiler option
IF (CMAKE_BUILD_TYPE MATCHES "DEBUG")
ADD_DEFINITIONS("-DTIZEN_DEBUG_ENABLE")