1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Projucer: Don't sort module libs list when adding to exporter

This commit is contained in:
ed 2019-03-13 15:55:26 +00:00
parent 61637218a2
commit e54208ecc8

View file

@ -241,7 +241,6 @@ static void parseAndAddLibs (StringArray& libList, const String& libs)
{
libList.addTokens (libs, ", ", {});
libList.trim();
libList.sort (false);
libList.removeDuplicates (false);
}