mirror of
https://github.com/Ed94/LangStudies.git
synced 2025-01-22 04:23:45 -08:00
More work on dev plumbing
This commit is contained in:
parent
fb2ddf07d2
commit
de45290150
14
Bootstrap_LangStudies.Windows.bat
Normal file
14
Bootstrap_LangStudies.Windows.bat
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
git clone --recurse-submodules https://github.com/Ed94/LangStudies
|
||||||
|
|
||||||
|
cd LangStudies
|
||||||
|
|
||||||
|
start build_engine.debug.bat
|
||||||
|
|
||||||
|
start Engine\gd\bin\godot.windows.tools.64.exe -e Editor/project.godot
|
||||||
|
timeout 20
|
||||||
|
taskkill /f /im godot.windows.tools.64.exe
|
||||||
|
|
||||||
|
|
||||||
|
start /w build_engine.release.bat
|
||||||
|
|
||||||
|
start /w build_project.bat
|
Binary file not shown.
Before Width: | Height: | Size: 495 KiB |
@ -1,3 +1,5 @@
|
|||||||
cd Engine\gd\
|
cd Engine\gd\
|
||||||
|
|
||||||
scons -j%NUMBER_OF_PROCESSORS% platform=windows
|
scons -j%NUMBER_OF_PROCESSORS% platform=windows
|
||||||
|
|
||||||
|
exit
|
@ -1,2 +1,5 @@
|
|||||||
cd Engine\gd\
|
cd Engine\gd\
|
||||||
|
|
||||||
scons -j%NUMBER_OF_PROCESSORS% platform=windows tools=no target=release bits=64
|
scons -j%NUMBER_OF_PROCESSORS% platform=windows tools=no target=release bits=64
|
||||||
|
|
||||||
|
exit
|
@ -1,14 +1,15 @@
|
|||||||
set CUR_YYYY=%date:~10,4%
|
set YYYY=%date:~10,4%
|
||||||
set CUR_MM=%date:~4,2%
|
set MM=%date:~4,2%
|
||||||
set CUR_DD=%date:~7,2%
|
set DD=%date:~7,2%
|
||||||
set CUR_HH=%time:~0,2%
|
set HH=%time:~0,2%
|
||||||
if %CUR_HH% lss 10 (set CUR_HH=0%time:~1,1%)
|
if %HH% lss 10 (set CUR_HH=0%time:~1,1%)
|
||||||
set CUR_NN=%time:~3,2%
|
set NN=%time:~3,2%
|
||||||
set CUR_SS=%time:~6,2%
|
set SS=%time:~6,2%
|
||||||
set CUR_MS=%time:~9,2%
|
set MS=%time:~9,2%
|
||||||
set SUBFILENAME=%CUR_YYYY%%CUR_MM%%CUR_DD%-%CUR_HH%%CUR_NN%%CUR_SS%
|
set SUBFILENAME=%YYYY%%MM%%DD%-%HH%%NN%%SS%
|
||||||
|
|
||||||
cd Builds
|
cd Builds
|
||||||
mkdir %SUBFILENAME%
|
mkdir %SUBFILENAME%
|
||||||
cd ..\Editor
|
|
||||||
start ..\Engine\gd\bin\godot.windows.opt.64.exe --export "Windows Desktop" "..\Builds\%SUBFILENAME%\LangStudies.exe"
|
cd ..\Engine\gd\bin
|
||||||
|
godot.windows.opt.64.exe --export "Windows Desktop" "..\Builds\%SUBFILENAME%\LangStudies.exe" --path "..\..\..\Editor"
|
Loading…
x
Reference in New Issue
Block a user