check npp472 instead of npp41

This commit is contained in:
Daniel Marjamäki 2008-01-11 07:30:56 +00:00
parent a770561de4
commit f3a96109eb
1 changed files with 10 additions and 10 deletions

View File

@ -4,25 +4,25 @@
date /t > scintilla.txt date /t > scintilla.txt
time /t >> scintilla.txt time /t >> scintilla.txt
FOR %%s IN (npp41\scintilla\src\*.cxx) DO ( FOR %%s IN (npp472\scintilla\src\*.cxx) DO (
ECHO %%s ECHO %%s
ECHO ---------------------------------- >> scintilla.txt ECHO ---------------------------------- >> scintilla.txt
ECHO %%s >> scintilla.txt ECHO %%s >> scintilla.txt
cppcheck --all %%s 2>> scintilla.txt cppcheck %%s 2>> scintilla.txt
) )
date /t > npp41.txt date /t > npp472.txt
time /t >> npp41.txt time /t >> npp472.txt
ECHO Notepad++ 4.1 >> npp41.txt ECHO Notepad++ 4.7.2 >> npp472.txt
ECHO ====================================== >> npp41.txt ECHO ====================================== >> npp472.txt
FOR %%s IN (npp41\PowerEditor\src\*.cpp) DO ( FOR %%s IN (npp472\PowerEditor\src\*.cpp) DO (
ECHO %%s ECHO %%s
ECHO ---------------------------------- >> npp41.txt ECHO ---------------------------------- >> npp472.txt
ECHO %%s >> npp41.txt ECHO %%s >> npp472.txt
cppcheck --all %%s 2>> npp41.txt cppcheck %%s 2>> npp472.txt
) )