From 1c4e7fb5636f5b0a3a529e4973648905cf1f03c3 Mon Sep 17 00:00:00 2001 From: housemaister Date: Tue, 15 Nov 2011 14:23:18 +0100 Subject: [PATCH] Added -pthread flag to compiler flags. --- templates/cpp.gtest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/cpp.gtest/Makefile b/templates/cpp.gtest/Makefile index c175b27..24d514d 100644 --- a/templates/cpp.gtest/Makefile +++ b/templates/cpp.gtest/Makefile @@ -21,7 +21,7 @@ USER_DIR = . CPPFLAGS += -I$(GTEST_DIR)/include # Flags passed to the C++ compiler. -CXXFLAGS += -g -Wall -Wextra +CXXFLAGS += -g -Wall -Wextra -pthread # All tests produced by this Makefile. Remember to add new tests you # created to the list.