Skip to content

Commit b51b795

Browse files
committed
SWPROT-8953: zpc: Relax Werror for release, to be reverted
For developer experience it is a good practice to attempt to support a different configuration (eg: MacOS, Yocto), This change will have to be reverted in the next developement cycle. Origin: #26 Signed-off-by: Philippe Coval <[email protected]>
1 parent 7a07239 commit b51b795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/include/compiler_options.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) # Do not allow fallback to previous C++
3131
set(CMAKE_CXX_EXTENSIONS ON) # Enable gnu++11 extentions
3232

3333
# Set compiler Flags
34-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pipe -Werror -Wall")
35-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pipe -Werror -Wall")
34+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pipe -Wall")
35+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pipe -Wall")
3636

3737
# Only add code coverage when CMAKE_GCOV is True
3838
if(CMAKE_GCOV)

0 commit comments

Comments
 (0)