mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Moved some methods into MiscUtilities
This commit is contained in:
parent
6261424cc8
commit
58c02823c5
9 changed files with 72 additions and 62 deletions
|
|
@ -111,7 +111,7 @@ public:
|
|||
|
||||
void refreshModuleInfoIfCurrentlyShowing (bool juceModulePathChanged)
|
||||
{
|
||||
auto isJuceModule = EnabledModuleList::isJuceModule (moduleID);
|
||||
auto isJuceModule = isJUCEModule (moduleID);
|
||||
auto shouldRefresh = (juceModulePathChanged && isJuceModule) || (! juceModulePathChanged && ! isJuceModule);
|
||||
|
||||
if (! shouldRefresh)
|
||||
|
|
@ -170,8 +170,8 @@ private:
|
|||
if (exporter->isCLion())
|
||||
continue;
|
||||
|
||||
auto key = modules.isJuceModule (moduleID) ? Ids::defaultJuceModulePath
|
||||
: Ids::defaultUserModulePath;
|
||||
auto key = isJUCEModule (moduleID) ? Ids::defaultJuceModulePath
|
||||
: Ids::defaultUserModulePath;
|
||||
|
||||
Value src (modulePathValueSources.add (new DependencyPathValueSource (exporter->getPathForModuleValue (moduleID),
|
||||
key, exporter->getTargetOSForExporter())));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue