-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathbuild_all_mingw.bat
More file actions
54 lines (52 loc) · 1.04 KB
/
build_all_mingw.bat
File metadata and controls
54 lines (52 loc) · 1.04 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
47
48
49
50
51
52
53
54
@echo off
REM Build File for MinGW GCC
set DIR_LIST=^
00_hello_triangle ^
00_hello_triangle_gl2.1 ^
01_extended_init ^
02_shaders ^
03_vertex_buffer_objects ^
04_mats_and_vecs ^
05_virtual_camera ^
06_vcam_with_quaternion ^
07_ray_picking ^
08_phong ^
09_texture_mapping ^
10_screen_capture ^
11_video_capture ^
12_debugging_shaders ^
13_mesh_import ^
14_multi_tex ^
15_phongtextures ^
16_frag_reject ^
17_alpha_blending ^
18_spotlights ^
19_fog ^
20_normal_mapping ^
21_cube_mapping ^
22_geom_shaders ^
23_tessellation_shaders ^
24_gui_panels ^
25_sprite_sheets ^
26_bitmap_fonts ^
27_font_atlas ^
28_uniform_buffer_object ^
29_particle_systems ^
30_skinning_part_one ^
31_skinning_part_two ^
32_skinning_part_three ^
33_extension_check ^
34_framebuffer_switch ^
35_image_kernel ^
36_colour_picking ^
37_deferred_shading ^
38_texture_shadows ^
39_texture_mapping_srgb ^
40_compute_shader ^
41_shader_hot_reload
FOR %%A IN (%DIR_LIST%) DO (
echo ~~~ %%A ~~~
cd %%A
make -f Makefile.win64
cd ..
)