forked from GaijinEntertainment/DagorEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_all.cmd
48 lines (44 loc) · 977 Bytes
/
build_all.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pushd prog\tools
call build_dagor3_cdk_mini.cmd
if errorlevel 1 (
echo build_dagor3_cdk_mini.cmd failed, trying once more...
call build_dagor3_cdk_mini.cmd
)
if errorlevel 1 (
echo failed to build CDK, stop!
exit /b 1
)
popd
pushd prog\tools\dargbox
call create_vfsroms.bat
cd shaders
call compile_shaders_pc11.bat
call compile_shaders_metal.bat
call compile_shaders_spirV.bat
popd
pushd prog\samples\physTest
jam
jam -f jamfile-test-jolt
cd shaders
call compile_game_shaders-dx11.bat
call compile_game_shaders-metal.bat
call compile_game_shaders-spirv.bat
popd
pushd samples\skiesSample\prog
jam
cd shaders
call compile_shaders_dx12.bat
call compile_shaders_dx11.bat
call compile_shaders_metal.bat
call compile_shaders_spirv.bat
call compile_shaders_tools.bat
popd
pushd samples\testGI\prog
jam
cd shaders
call compile_shaders_dx12.bat
call compile_shaders_dx11.bat
call compile_shaders_metal.bat
call compile_shaders_spirv.bat
call compile_shaders_tools.bat
popd