From 159f4c5d6f85bbcc4159c55142f77fc571fa5c2a Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Sun, 12 Jul 2015 12:33:36 -0400 Subject: [PATCH] Set C++11 mode for the project. Apparently VisualC++ didn't need this but you do for Linux and OSX. --- SavvyCAN.pro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SavvyCAN.pro b/SavvyCAN.pro index 8605ba44..1a4ba416 100644 --- a/SavvyCAN.pro +++ b/SavvyCAN.pro @@ -10,6 +10,8 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets serialport printsupport CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT +CONFIG += c++11 + TARGET = SavvyCAN TEMPLATE = app