Skip to content

Commit

Permalink
Temporarily disable -Werr to ease transition
Browse files Browse the repository at this point in the history
  • Loading branch information
James Shen committed Jan 9, 2025
1 parent bb47da2 commit 45f3c3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
add_compile_options(-Wall -Werror)
add_compile_options(-Wall)
# Not turning on errors yet to ease transition
#add_compile_options(-Werr)

###########################################################
# Set CMAKE standards
Expand Down

0 comments on commit 45f3c3d

Please sign in to comment.