pause
::切换工作路径到Make_Exe
cd %obj_file_dir%
set dir_name="04-Exe"
::通过比较SourceFiles的内容来判断是否编译完成
:waitForHighBuild
for /F %%s in ('dir /B %dir_name%') do (set dir_Exe_flag=%%s)
if NOT "!dir_Exe_flag!" == "SourceFiles.txt" (echo build not over && goto waitForHighBuild)
echo build over
fc %sourcelistCheck% %sourcelistTarget%
echo %errorlevel%
if %errorlevel%==0 ( call %highBat% Y && echo Run High.bat
) else (echo build failed && goto :eof)
pause