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

Added a couple more file types to the projucer's list when stripping whitespace

This commit is contained in:
jules 2019-05-09 09:52:50 +01:00
parent 42532eb535
commit bb5b534ab8

View file

@ -48,7 +48,7 @@ namespace
{
Array<File> files;
for (DirectoryIterator di (folder, true, "*.cpp;*.cxx;*.cc;*.c;*.h;*.hpp;*.hxx;*.hpp;*.mm;*.m;*.java;*.dox;", File::findFiles); di.next();)
for (DirectoryIterator di (folder, true, "*.cpp;*.cxx;*.cc;*.c;*.h;*.hpp;*.hxx;*.hpp;*.mm;*.m;*.java;*.dox;*.soul;*.js", File::findFiles); di.next();)
if (! di.getFile().isSymbolicLink())
files.add (di.getFile());