mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-05 03:50:07 +00:00
Native: Rename all native files for improved consistency
This commit is contained in:
parent
d7f1e59422
commit
05d5c94990
248 changed files with 7121 additions and 7097 deletions
|
|
@ -266,11 +266,12 @@ void LibraryModule::findBrowseableFiles (const File& folder, Array<File>& filesF
|
|||
|
||||
bool LibraryModule::CompileUnit::isNeededForExporter (ProjectExporter& exporter) const
|
||||
{
|
||||
if ((hasSuffix (file, "_OSX") && ! exporter.isOSX())
|
||||
|| (hasSuffix (file, "_iOS") && ! exporter.isiOS())
|
||||
|| (hasSuffix (file, "_Windows") && ! exporter.isWindows())
|
||||
|| (hasSuffix (file, "_Linux") && ! exporter.isLinux())
|
||||
|| (hasSuffix (file, "_Android") && ! exporter.isAndroid()))
|
||||
if ((hasSuffix (file, "_osx") && ! exporter.isOSX())
|
||||
|| (hasSuffix (file, "_mac") && ! exporter.isOSX())
|
||||
|| (hasSuffix (file, "_ios") && ! exporter.isiOS())
|
||||
|| (hasSuffix (file, "_windows") && ! exporter.isWindows())
|
||||
|| (hasSuffix (file, "_linux") && ! exporter.isLinux())
|
||||
|| (hasSuffix (file, "_android") && ! exporter.isAndroid()))
|
||||
return false;
|
||||
|
||||
auto targetType = Project::getTargetTypeFromFilePath (file, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue