Dengine/src/static_check.bat

20 lines
304 B
Batchfile

@echo off
echo -------
echo -------
set Wildcard=*.h *.cpp *.inl *.c
echo STATICS FOUND:
findstr -s -n -i -l "static" %Wildcard%
echo -------
echo -------
@echo GLOBALS FOUND:
findstr -s -n -i -l "local_persist" %Wildcard%
findstr -s -n -i -l "global_variable" %Wildcard%
echo -------
echo -------