1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Projucer: Initialise legacy VST SDK path value in Code::Blocks exporter

This commit is contained in:
ed 2019-01-18 16:20:24 +00:00
parent 020f3aa512
commit e7750ecd92

View file

@ -180,6 +180,14 @@ public:
jassert (targets.size() > 0);
}
void initialiseDependencyPathValues() override
{
auto targetOS = isWindows() ? TargetOS::windows : TargetOS::linux;
vstLegacyPathValueWrapper.init ({ settings, Ids::vstLegacyFolder, nullptr },
getAppSettings().getStoredPath (Ids::vstLegacyPath, targetOS), targetOS);
}
private:
ValueWithDefault targetPlatformValue;