1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix the Python type error when creating the .sln file

(cherry picked from commit 19a8efc875)
This commit is contained in:
HK-SHAO
2023-03-25 15:09:50 +08:00
committed by Rémi Verschelde
parent cd18ba3fce
commit 52832053a0

View File

@@ -890,7 +890,7 @@ def generate_vs_project(env, num_jobs):
for plat_id in ModuleConfigs.PLATFORM_IDS
]
self.arg_dict["cpppaths"] += ModuleConfigs.for_every_variant(env["CPPPATH"] + [includes])
self.arg_dict["cppdefines"] += ModuleConfigs.for_every_variant(env["CPPDEFINES"] + defines)
self.arg_dict["cppdefines"] += ModuleConfigs.for_every_variant(list(env["CPPDEFINES"]) + defines)
self.arg_dict["cmdargs"] += ModuleConfigs.for_every_variant(cli_args)
def build_commandline(self, commands):