mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-30 02:50:05 +00:00
Introjucer: handling newlines in extra compiler flags setting.
This commit is contained in:
parent
3e628c816e
commit
f45a311d97
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ public:
|
|||
String getTargetLocationString() const { return getSettingString (Ids::targetFolder); }
|
||||
|
||||
Value getExtraCompilerFlags() { return getSetting (Ids::extraCompilerFlags); }
|
||||
String getExtraCompilerFlagsString() const { return getSettingString (Ids::extraCompilerFlags); }
|
||||
String getExtraCompilerFlagsString() const { return getSettingString (Ids::extraCompilerFlags).replaceCharacters ("\r\n", " "); }
|
||||
|
||||
Value getExtraLinkerFlags() { return getSetting (Ids::extraLinkerFlags); }
|
||||
String getExtraLinkerFlagsString() const { return getSettingString (Ids::extraLinkerFlags).replaceCharacters ("\r\n", " "); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue