Skip to content

Commit

Permalink
[CMake] remove -Werror to avoid compilation failures
Browse files Browse the repository at this point in the history
Before this, we crashed because of compilation warnings (converted to errors) in
system libraries such as chrono.
  • Loading branch information
KrisThielemans committed Oct 27, 2023
1 parent 6f64735 commit bf50cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(CMAKE_CXX_STANDARD 17)
if(WIN32)
add_compile_options(/W3 /WX)
else()
add_compile_options(-Wall -Wextra -pedantic -Werror)
add_compile_options(-Wall -Wextra -pedantic)
endif()

add_executable(prd_generator prd_generator.cpp)
Expand Down

0 comments on commit bf50cac

Please sign in to comment.