mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Introjucer: following aliases in modules folder.
This commit is contained in:
parent
976be45c2a
commit
40183ecd74
2 changed files with 2 additions and 7 deletions
|
|
@ -155,11 +155,6 @@ File ModuleList::getLocalModulesFolder (Project* project)
|
|||
return f;
|
||||
}
|
||||
|
||||
File ModuleList::getModuleFolder (const String& uid) const
|
||||
{
|
||||
return getModulesFolder().getChildFile (uid);
|
||||
}
|
||||
|
||||
void ModuleList::setLocalModulesFolder (const File& file)
|
||||
{
|
||||
//jassert (FileHelpers::isJuceFolder (file));
|
||||
|
|
@ -196,7 +191,8 @@ void ModuleList::rescan (const File& newModulesFolder)
|
|||
|
||||
while (iter.next())
|
||||
{
|
||||
const File moduleDef (iter.getFile().getChildFile (LibraryModule::getInfoFileName()));
|
||||
const File moduleDef (iter.getFile().getLinkedTarget()
|
||||
.getChildFile (LibraryModule::getInfoFileName()));
|
||||
|
||||
if (moduleDef.exists())
|
||||
{
|
||||
|
|
|
|||
|
|
@ -95,7 +95,6 @@ public:
|
|||
void rescan (const File& newModulesFolder);
|
||||
void rescan();
|
||||
File getModulesFolder() const { return moduleFolder; }
|
||||
File getModuleFolder (const String& uid) const;
|
||||
|
||||
bool loadFromWebsite();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue