X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=build.c;h=811317d82f64ca6100390c06f65b23e00150b1e6;hb=c2b59441df0383807ba093295af2e4400e552f39;hp=154c4744f306b402c3bf54d2f2f00e7bda5f6874;hpb=ba32ebf50f42c9eb832ed61a110ca91a535b6cd9;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/build.c b/build.c index 154c474..811317d 100644 --- a/build.c +++ b/build.c @@ -81,6 +81,7 @@ void build_game( enum compiler compiler ) vg_build_symbolic_link( "sound_src", "sound" ); vg_build_symbolic_link( "playermodels_src", "playermodels" ); vg_build_syscall( "mkdir -p %s/cfg", vg_compiler.build_dir ); + vg_build_syscall( "mkdir -p %s/savedata", vg_compiler.build_dir ); vg_build_syscall( "mkdir -p %s/tools", vg_compiler.build_dir ); vg_build_syscall( "cp blender_export.py %s/tools/", vg_compiler.build_dir ); @@ -195,9 +196,11 @@ void build_shaders(void) _S( "scene_route", "scene.vs", "scene_route.fs" ); _S( "scene_depth", "scene.vs", "scene_depth.fs" ); _S( "scene_position", "scene.vs", "scene_position.fs" ); + _S( "scene_cubemapped", "scene.vs", "scene_cubemapped.fs" ); _S( "scene_water", "scene.vs", "scene_water.fs" ); _S( "scene_water_fast", "scene.vs", "scene_water_fast.fs" ); _S( "scene_scoretext", "scene_sfd.vs", "scene_standard.fs" ); + _S( "scene_font", "model_font.vs","scene_font.fs" ); /* Models */ _S( "model_sky", "model.vs", "model_sky.fs" );