Don't overwrite CMAKE_CXX_FLAGS (#159)

This commit is contained in:
Johan Gunnarsson 2021-08-24 16:40:36 +02:00 committed by GitHub
parent fa930678ea
commit 0a26a12f94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ option(TIM_VX_USE_EXTERNAL_OVXLIB "Use external OVXLIB" OFF)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_CXX_FLAGS "-Wall -Wextra -Werror")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror")
set(CONFIG "" CACHE STRING "Target Platform")
if(${TIM_VX_CODE_COVERAGE})