Remove -Werror

It is an annoying piece of garbage
This commit is contained in:
moneromooo-monero 2018-11-17 13:15:03 +00:00
parent d850e05b53
commit 707c2f836b
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
4 changed files with 2 additions and 15 deletions

View file

@ -14,8 +14,8 @@ IF (MSVC)
include_directories(SYSTEM platform/msvc)
ELSE()
# set stuff for other systems
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -Wall -Werror")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Werror -Wno-reorder")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -Wall")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wno-reorder")
ENDIF()