2007-05-08 18:30:57 +02:00
|
|
|
|
|
|
|
@ECHO OFF
|
|
|
|
|
|
|
|
date /t > scintilla.txt
|
|
|
|
time /t >> scintilla.txt
|
|
|
|
|
2008-01-11 08:30:56 +01:00
|
|
|
FOR %%s IN (npp472\scintilla\src\*.cxx) DO (
|
2007-05-08 18:30:57 +02:00
|
|
|
ECHO %%s
|
|
|
|
ECHO ---------------------------------- >> scintilla.txt
|
|
|
|
ECHO %%s >> scintilla.txt
|
2008-01-11 08:30:56 +01:00
|
|
|
cppcheck %%s 2>> scintilla.txt
|
2007-05-08 18:30:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2008-01-11 08:30:56 +01:00
|
|
|
date /t > npp472.txt
|
|
|
|
time /t >> npp472.txt
|
2007-05-10 19:24:52 +02:00
|
|
|
|
2008-01-11 08:30:56 +01:00
|
|
|
ECHO Notepad++ 4.7.2 >> npp472.txt
|
|
|
|
ECHO ====================================== >> npp472.txt
|
2007-05-08 18:30:57 +02:00
|
|
|
|
2008-01-11 08:30:56 +01:00
|
|
|
FOR %%s IN (npp472\PowerEditor\src\*.cpp) DO (
|
2007-05-08 18:30:57 +02:00
|
|
|
ECHO %%s
|
2008-01-11 08:30:56 +01:00
|
|
|
ECHO ---------------------------------- >> npp472.txt
|
|
|
|
ECHO %%s >> npp472.txt
|
|
|
|
cppcheck %%s 2>> npp472.txt
|
2007-05-08 18:30:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2007-07-20 17:43:39 +02:00
|
|
|
|