Commit 4ea629d3 authored by Benjamin Carman's avatar Benjamin Carman
Browse files

Added line to sample Makefile in googletest/googletest/make to specify use of...

Added line to sample Makefile in googletest/googletest/make to specify use of C++11 in CXXFLAGS as required by the system
parent 879ac092
...@@ -25,7 +25,7 @@ USER_DIR = ../samples ...@@ -25,7 +25,7 @@ USER_DIR = ../samples
CPPFLAGS += -isystem $(GTEST_DIR)/include CPPFLAGS += -isystem $(GTEST_DIR)/include
# Flags passed to the C++ compiler. # Flags passed to the C++ compiler.
CXXFLAGS += -g -Wall -Wextra -pthread CXXFLAGS += -g -Wall -Wextra -pthread -std=c++11
# All tests produced by this Makefile. Remember to add new tests you # All tests produced by this Makefile. Remember to add new tests you
# created to the list. # created to the list.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment