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:
parent
5d56b9bdf5
commit
b7c3b5c89c
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue