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

This commit is contained in:
Benjamin Carman 2018-11-01 02:25:08 -04:00
parent b29ffa4d17
commit dd9476fce1

View File

@ -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.