Browse Source

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

tags/2021-05-28
jules 6 years ago
parent
commit
bb5b534ab8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Application/jucer_CommandLine.cpp

+ 1
- 1
extras/Projucer/Source/Application/jucer_CommandLine.cpp 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());


Loading…
Cancel
Save