Added script that checks the notepad++ source code
This commit is contained in:
parent
6c585cf11d
commit
476d424712
|
@ -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
|
||||||
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue