summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorBenjamin Carman <bc818216@ohio.edu>2018-11-01 06:25:08 (GMT)
committerBenjamin Carman <bc818216@ohio.edu>2018-11-01 06:25:08 (GMT)
commit4ea629d31d4a0b3cab98b0b237e666c265dae895 (patch)
treec5f25c4ab84eabcbc19903491cfb50f26068c568 /googletest
parent879ac092fde0a19e1b3a61b2546b2a422b1528bc (diff)
downloadgoogletest-4ea629d31d4a0b3cab98b0b237e666c265dae895.zip
googletest-4ea629d31d4a0b3cab98b0b237e666c265dae895.tar.gz
googletest-4ea629d31d4a0b3cab98b0b237e666c265dae895.tar.bz2
Added line to sample Makefile in googletest/googletest/make to specify use of C++11 in CXXFLAGS as required by the system
Diffstat (limited to 'googletest')
-rw-r--r--googletest/make/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/make/Makefile b/googletest/make/Makefile
index 9ac7449..91eb68b 100644
--- a/googletest/make/Makefile
+++ b/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.