From 7230e038d4aeddf718bd37d582eb1fe76e7229f1 Mon Sep 17 00:00:00 2001 From: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:30:46 -0500 Subject: [PATCH 1/2] Rename vsproj solution generated by scons --- methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/methods.py b/methods.py index 04541c72ad2..68d905ccf75 100644 --- a/methods.py +++ b/methods.py @@ -1089,7 +1089,7 @@ def non_serializable(obj): # # To generate AND build from the command line: # scons vsproj=yes vsproj_gen_only=no -def generate_vs_project(env, original_args, project_name="godot"): +def generate_vs_project(env, original_args, project_name="redot"): # Augmented glob_recursive that also fills the dirs argument with traversed directories that have content. def glob_recursive_2(pattern, dirs, node="."): from SCons import Node From 788a513a09133d8cb425801f329d21ccdc72b714 Mon Sep 17 00:00:00 2001 From: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:23:21 -0500 Subject: [PATCH 2/2] Update SConstruct --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 63cff4fe167..45e3700fe6e 100644 --- a/SConstruct +++ b/SConstruct @@ -254,7 +254,7 @@ opts.Add(BoolVariable("werror", "Treat compiler warnings as errors", False)) opts.Add("extra_suffix", "Custom extra suffix added to the base filename of all generated binary files", "") opts.Add("object_prefix", "Custom prefix added to the base filename of all generated object files", "") opts.Add(BoolVariable("vsproj", "Generate a Visual Studio solution", False)) -opts.Add("vsproj_name", "Name of the Visual Studio solution", "godot") +opts.Add("vsproj_name", "Name of the Visual Studio solution", "redot") opts.Add("import_env_vars", "A comma-separated list of environment variables to copy from the outer environment.", "") opts.Add(BoolVariable("disable_3d", "Disable 3D nodes for a smaller executable", False)) opts.Add(BoolVariable("disable_advanced_gui", "Disable advanced GUI nodes and behaviors", False))