Added script that checks the notepad++ source code

This commit is contained in:
Daniel Marjamäki 2007-05-08 16:30:57 +00:00
parent 6c585cf11d
commit 476d424712
1 changed files with 25 additions and 0 deletions

25
checknpp.bat Normal file
View File

@ -0,0 +1,25 @@
@ECHO OFF
date /t > scintilla.txt
time /t >> scintilla.txt
FOR %%s IN (npp41\scintilla\src\*.cxx) DO (
ECHO %%s
ECHO ---------------------------------- >> scintilla.txt
ECHO %%s >> scintilla.txt
cppcheck %%s 2>> scintilla.txt
)
date /t > powereditor.txt
time /t >> powereditor.txt
FOR %%s IN (npp41\PowerEditor\src\*.cpp) DO (
ECHO %%s
ECHO ---------------------------------- >> powereditor.txt
ECHO %%s >> powereditor.txt
cppcheck %%s 2>> powereditor.txt
)