From db1dbdd59c8b10452472eebfc3ae896a63e0cade Mon Sep 17 00:00:00 2001 From: hgn Date: Thu, 30 May 2024 21:47:53 +0100 Subject: [PATCH] build scripts --- build.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.c b/build.c index 42a9ff7..2879554 100644 --- a/build.c +++ b/build.c @@ -60,13 +60,13 @@ void s_release_all(void) struct vg_compiler_env env = vg_release_env; env.platform = k_platform_linux; - vg_project_init( &linux_proj, "bin", "marblecomp", 1 ); + vg_project_init( &linux_proj, "bin", "marblecomp", &env, 1 ); build_game_content( &linux_proj ); build_game_bin( &linux_proj, &env ); env = vg_release_env; env.platform = k_platform_windows; - vg_project_init( &windows_proj, "bin", "marblecomp", 1 ); + vg_project_init( &windows_proj, "bin", "marblecomp", &env, 1 ); build_game_content( &windows_proj ); build_game_bin( &windows_proj, &env ); @@ -79,7 +79,7 @@ void s_testing_build(void) vg_info( "running script: s_testing_build(void)\n" ); struct vg_project proj; - vg_project_init( &proj, "bin", "marblecomp-test", 0 ); + vg_project_init( &proj, "bin", "marblecomp-test", NULL, 0 ); build_game_content( &proj ); build_game_bin( &proj, &vg_test_env ); } -- 2.25.1