mirror of
https://github.com/Ed94/LangStudies.git
synced 2025-01-21 20:13:45 -08:00
Dev update 2
This commit is contained in:
parent
2b982bda84
commit
8117abedc9
37
Bootstrap_LangStudies.Windows.bat
Normal file
37
Bootstrap_LangStudies.Windows.bat
Normal file
@ -0,0 +1,37 @@
|
||||
where "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" >nul 2>nul
|
||||
if not ERRORLEVEL 0 (
|
||||
echo Visual Studio 2019 not found... Remove this error message if you do have it.
|
||||
pause
|
||||
exit
|
||||
)
|
||||
|
||||
where scons >nul 2>nul
|
||||
if not ERRORLEVEL 0 (
|
||||
python pip install scons
|
||||
)
|
||||
|
||||
git clone --recurse-submodules https://github.com/Ed94/LangStudies
|
||||
|
||||
cd LangStudies
|
||||
|
||||
start build_engine.bat
|
||||
|
||||
:tools_wait
|
||||
timeout 1
|
||||
if not exist Engine\gd\bin\godot.windows.opt.tools.64.exe (
|
||||
goto :tools_wait
|
||||
)
|
||||
timeout 10
|
||||
|
||||
start Engine\gd\bin\godot.windows.opt.tools.64.exe -e Editor/project.godot
|
||||
timeout 30
|
||||
|
||||
taskkill /f /im godot.windows.opt.tools.64.exe
|
||||
|
||||
:opt_wait
|
||||
timeout 1
|
||||
if not exist Engine\gd\bin\godot.windows.opt.64.exe (
|
||||
goto :opt_wait
|
||||
)
|
||||
|
||||
start /w build_project.bat
|
@ -1,10 +1,6 @@
|
||||
start build_engine.debug.bat
|
||||
timeout 10
|
||||
|
||||
start build_engine.release_debug.bat
|
||||
timeout 10
|
||||
|
||||
start build_engine.release.bat
|
||||
timeout 10
|
||||
start /w build_engine.debug.bat
|
||||
start /w build_engine.release_debug.bat
|
||||
start /w build_engine.release.bat
|
||||
|
||||
exit
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user