2007-05-08 18:30:57 +02:00
|
|
|
|
|
|
|
@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
|
2007-05-08 18:30:57 +02:00
|
|
|
|
|
|
|
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
|
2007-05-08 18:30:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|