mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-23 01:44:22 +00:00
Introjucer: Added an Xcode post-build script setting. Enlarged some of the settings page boxes, allowing multi-line text entry for some paths and preprocessor settings. Moved the modules list to its own tree-item.
This commit is contained in:
parent
3974e09c9f
commit
ead42bd39a
12 changed files with 109 additions and 70 deletions
|
|
@ -240,6 +240,10 @@ namespace RTASHelpers
|
|||
else
|
||||
getRTASFolder (exporter) = "~/SDKs/PT_80_SDK";
|
||||
}
|
||||
|
||||
if (exporter.settings [Ids::postbuildCommand].toString().isEmpty())
|
||||
exporter.getSetting (Ids::postbuildCommand) = String::fromUTF8 (BinaryData::AudioPluginXCodeScript_txt,
|
||||
BinaryData::AudioPluginXCodeScript_txtSize);
|
||||
}
|
||||
|
||||
static void addExtraSearchPaths (ProjectExporter& exporter)
|
||||
|
|
@ -345,7 +349,7 @@ namespace RTASHelpers
|
|||
|
||||
exporter.msvcDelayLoadedDLLs = "DAE.dll; DigiExt.dll; DSI.dll; PluginLib.dll; DSPManager.dll";
|
||||
|
||||
if (! exporter.getExtraLinkerFlags().toString().contains ("/FORCE:multiple"))
|
||||
if (! exporter.getExtraLinkerFlagsString().contains ("/FORCE:multiple"))
|
||||
exporter.getExtraLinkerFlags() = exporter.getExtraLinkerFlags().toString() + " /FORCE:multiple";
|
||||
|
||||
for (ProjectExporter::ConfigIterator config (exporter); config.next();)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue