Skip to content

Commit

Permalink
turn of warnings-as-errors with msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Aug 6, 2016
1 parent 93c54ba commit 8a4fcd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Jamroot.jam
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ alias boost : : : : <include>$(BOOST_INCLUDE_DIR) ;

# TODO: Work around this on windows
# <cxxflags>"-Wall -Werror -Wextra -pedantic -std=c++11"
STRICT = <warnings>"all" <warnings-as-errors>"on" <define>"STRICT_VARIANT_DEBUG" <toolset>gcc:<cxxflags>"-std=c++11" <toolset>clang:<cxxflags>"-std=c++11" ;
STRICT = <warnings>"all" <toolset>gcc:<warnings-as-errors>"on" <toolset>clang:<warnings-as-errors>"on" <define>"STRICT_VARIANT_DEBUG" <toolset>gcc:<cxxflags>"-std=c++11" <toolset>clang:<cxxflags>"-std=c++11" ;

exe variant : variant.cpp strict_variant test_harness : $(STRICT) ;
exe compare : compare.cpp strict_variant test_harness : $(STRICT) ;
Expand Down

0 comments on commit 8a4fcd3

Please sign in to comment.