1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: moved a C++11 flag setting in the linux makefile.

This commit is contained in:
jules 2015-06-29 16:19:58 +01:00
parent 5d56b9bdf5
commit b7c3b5c89c

View file

@ -156,7 +156,7 @@ private:
void writeCppFlags (OutputStream& out, const BuildConfiguration& config) const
{
out << " CPPFLAGS := $(DEPFLAGS) -std=c++11";
out << " CPPFLAGS := $(DEPFLAGS)";
writeDefineFlags (out, config);
writeHeaderPathFlags (out, config);
out << newLine;
@ -232,7 +232,7 @@ private:
<< (" " + replacePreprocessorTokens (config, getExtraCompilerFlagsString())).trimEnd()
<< newLine;
out << " CXXFLAGS += $(CFLAGS)" << newLine;
out << " CXXFLAGS += $(CFLAGS) -std=c++11" << newLine;
writeLinkerFlags (out, config);