mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Introjucer: refactored some functions and made it add "--no-undefined" to linux VST makefile linker settings.
This commit is contained in:
parent
3e5b15a8e3
commit
43ce64a099
13 changed files with 56 additions and 63 deletions
|
|
@ -370,7 +370,7 @@ void LibraryModule::prepareExporter (ProjectExporter& exporter, ProjectSaver& pr
|
|||
|
||||
parseAndAddLibs (exporter.xcodeLibs, moduleInfo.moduleInfo [exporter.isOSX() ? "OSXLibs" : "iOSLibs"].toString());
|
||||
}
|
||||
else if (exporter.isLinuxMakefile() || exporter.isCodeBlocksLinux())
|
||||
else if (exporter.isLinux())
|
||||
{
|
||||
parseAndAddLibs (exporter.linuxLibs, moduleInfo.moduleInfo ["LinuxLibs"].toString());
|
||||
}
|
||||
|
|
@ -501,7 +501,7 @@ static bool fileTargetMatches (ProjectExporter& exporter, const String& target)
|
|||
return exporterTargetMatches ("xcode", target);
|
||||
if (exporter.isWindows())
|
||||
return exporterTargetMatches ("msvc", target);
|
||||
if (exporter.isLinuxMakefile() || exporter.isCodeBlocksLinux())
|
||||
if (exporter.isLinux())
|
||||
return exporterTargetMatches ("linux", target);
|
||||
if (exporter.isAndroid())
|
||||
return exporterTargetMatches ("android", target);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue