-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild_all_debug.bat
More file actions
46 lines (37 loc) · 1.02 KB
/
build_all_debug.bat
File metadata and controls
46 lines (37 loc) · 1.02 KB
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
@echo off
if not defined DevEnvDir (
call "shell.bat"
)
echo [94mBuilding imgui...[0m
cd "%~dp0\external\imgui\lib"
call "build_imgui.bat" /debug /Od
cd "..\..\.."
echo [94mBuilding imguizmo...[0m
cd "%~dp0\external\imguizmo\lib"
call "build_imguizmo.bat" /debug /Od
cd "..\..\.."
echo [94mBuilding efsw...[0m
cd "%~dp0\external\efsw\lib"
call "build_efsw.bat" /debug /Od
cd "..\..\.."
echo [94mBuilding yaml-cpp...[0m
cd "%~dp0\external\yaml-cpp\lib"
call "build-yaml-cpp.bat" /debug /Od
cd "..\..\.."
echo [94mBuilding shader_cpp_generator...[0m
cd "%~dp0\engine\tools\shader_cpp_generator"
call "build_shader_cpp_generator.bat" /debug /Od
cd "..\..\.."
echo [95mGenerating cpp shaders...[0m
cd "%~dp0\engine\tools\shader_cpp_generator"
call "shader_cpp_generator.exe"
call "shader_cpp_generator_hlsl.exe"
cd "..\..\.."
echo [94mBuilding engine...[0m
cd "%~dp0\engine\lib"
call "build_engine.bat" /debug /Od
cd "..\.."
echo [94mBuilding editor...[0m
cd "%~dp0\editor\bin"
call "build_editor.bat" /debug /Od
cd "..\.."