Added line to sample Makefile in googletest/googletest/make to specify use of C++11 in CXXFLAGS as required by the system

pull/1950/head
Benjamin Carman 6 years ago
parent 879ac092fd
commit 4ea629d31d
  1. 2
      googletest/make/Makefile

@ -25,7 +25,7 @@ USER_DIR = ../samples
CPPFLAGS += -isystem $(GTEST_DIR)/include
# 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
# created to the list.

Loading…
Cancel
Save