1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Moved dependency path key strings into better location (DependencyPath utility class)

This commit is contained in:
Timur Doumler 2015-08-13 11:08:03 +01:00
parent 518bb53260
commit d9cd459032
6 changed files with 41 additions and 39 deletions

View file

@ -266,7 +266,7 @@ namespace VSTHelpers
props.add (new DependencyPathPropertyComponent (getVSTFolder (exporter, isVST3),
vstFormat + " Folder",
isVST3 ? PathSettingsTab::vst3KeyName : PathSettingsTab::vst2KeyName,
isVST3 ? DependencyPath::vst3KeyName : DependencyPath::vst2KeyName,
getDependencyPathOS (exporter)),
"If you're building a " + vstFormat + ", this must be the folder containing the " + vstFormat + " SDK. This should be an absolute path.");
}
@ -476,7 +476,7 @@ namespace RTASHelpers
props.add (new DependencyPathPropertyComponent (getRTASFolder (exporter),
"RTAS Folder",
PathSettingsTab::rtasKeyName,
DependencyPath::rtasKeyName,
getDependencyPathOS (exporter)),
"If you're building an RTAS, this must be the folder containing the RTAS SDK. This should be an absolute path.");
}
@ -663,7 +663,7 @@ namespace AAXHelpers
props.add (new DependencyPathPropertyComponent (getAAXFolder (exporter),
"AAX SDK Folder",
PathSettingsTab::aaxKeyName,
DependencyPath::aaxKeyName,
getDependencyPathOS (exporter)),
"If you're building an AAX, this must be the folder containing the AAX SDK. This should be an absolute path.");
}