diff --git a/src/com/dogcows/resources/C++Makefile b/src/com/dogcows/resources/C++Makefile index 5b58356..fc38d6a 100644 --- a/src/com/dogcows/resources/C++Makefile +++ b/src/com/dogcows/resources/C++Makefile @@ -1,8 +1,9 @@ -# Set the command for your C++ compiler, and specify any compiler flags you want to use (e.g. -g -# -Werror). -CXX = g++ -CXXFLAGS = -ggdb -Wall +# Set the command for your C++ compiler, and specify any compiler flags you +# want to use (e.g. -g -Werror). +CXX = g++ +CXXFLAGS = -std=c++11 -ggdb -Wall + # The driver outputs TAP (Test Anything Protocol), so it can also be used with any TAP test harness # (e.g. prove). Set the path to your test harness here, then use the `prove' target to run the