diff options
author | Alexander Festini <afestini@gmail.com> | 2022-10-01 20:16:34 +0200 |
---|---|---|
committer | Alexander Festini <afestini@gmail.com> | 2022-10-03 17:17:56 +0200 |
commit | 5ac75a02e56dbbf3e6b492d194c571f12af0a4a5 (patch) | |
tree | 1f762e0c7a8c2faec7b2468958070fc9106c19a5 | |
parent | e69b7083d45c5d8698508cce7086d361c4b1f44c (diff) |
vsproj: create build targets depending on dev_build
-rw-r--r-- | methods.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/methods.py b/methods.py index dadac37cb5..876796b103 100644 --- a/methods.py +++ b/methods.py @@ -741,7 +741,7 @@ def generate_vs_project(env, num_jobs): PLATFORMS = ["Win32", "x64"] PLATFORM_IDS = ["x86_32", "x86_64"] CONFIGURATIONS = ["editor", "template_release", "template_debug"] - DEV_SUFFIX = ["", ".dev"] + DEV_SUFFIX = ".dev" if env["dev_build"] else "" @staticmethod def for_every_variant(value): @@ -776,10 +776,9 @@ def generate_vs_project(env, num_jobs): for platform in ModuleConfigs.PLATFORMS ] self.arg_dict["runfile"] += [ - f'bin\\godot.windows.{config}{dev}.{plat_id}{f".{name}" if name else ""}.exe' + f'bin\\godot.windows.{config}{ModuleConfigs.DEV_SUFFIX}.{plat_id}{f".{name}" if name else ""}.exe' for config in ModuleConfigs.CONFIGURATIONS for plat_id in ModuleConfigs.PLATFORM_IDS - for dev in ModuleConfigs.DEV_SUFFIX ] self.arg_dict["cpppaths"] += ModuleConfigs.for_every_variant(env["CPPPATH"] + [includes]) self.arg_dict["cppdefines"] += ModuleConfigs.for_every_variant(env["CPPDEFINES"] + defines) |