String ProjectExporter::BuildConfiguration::getGCCLibraryPathFlags() const { String s; const auto libraryPaths = getSearchPathsFromString (getLibrarySearchPathString()); for (auto path : libraryPaths) s << " -L" << escapeSpaces (path).replace ("~", "$(HOME)"); for (auto path : exporter.moduleLibSearchPaths) s << " -L" << escapeSpaces (path).replace ("~", "$(HOME)") << "/" << getLibrarySubdirPath(); return s; }
String ProjectExporter::BuildConfiguration::getGCCLibraryPathFlags() const { String s; const StringArray libraryPaths (getLibrarySearchPaths()); for (int i = 0; i < libraryPaths.size(); ++i) s << " -L" << escapeSpaces (libraryPaths[i]); return s; }