cppcheck/checknpp.bat

29 lines
586 B
Batchfile
Raw Normal View History

@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
)
2007-05-10 19:24:52 +02:00
date /t > npp41.txt
time /t >> npp41.txt
ECHO Notepad++ 4.1 >> npp41.txt
ECHO ====================================== >> npp41.txt
FOR %%s IN (npp41\PowerEditor\src\*.cpp) DO (
ECHO %%s
2007-05-10 19:24:52 +02:00
ECHO ---------------------------------- >> npp41.txt
ECHO %%s >> npp41.txt
cppcheck %%s 2>> npp41.txt
)