1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

more auto-update work

This commit is contained in:
jules 2014-11-11 12:26:42 +00:00
parent 41f21aed7e
commit 4b28a4bb23
7 changed files with 145 additions and 49 deletions

View file

@ -895,3 +895,13 @@ void EnabledModuleList::addModuleOfferingToCopy (const File& f)
addModule (m.manifestFile, areMostModulesCopiedLocally());
}
bool isJuceFolder (const File& f)
{
return isJuceModulesFolder (f.getChildFile ("modules"));
}
bool isJuceModulesFolder (const File& f)
{
return f.isDirectory() && f.getChildFile ("juce_core").isDirectory();
}