mirror of
https://github.com/godotengine/godot.git
synced 2024-11-12 23:24:26 +00:00
Fix the Python type error when creating the .sln file
This commit is contained in:
parent
0291fcd7b6
commit
19a8efc875
@ -783,7 +783,7 @@ def generate_vs_project(env, num_jobs, project_name="godot"):
|
|||||||
for plat_id in ModuleConfigs.PLATFORM_IDS
|
for plat_id in ModuleConfigs.PLATFORM_IDS
|
||||||
]
|
]
|
||||||
self.arg_dict["cpppaths"] += ModuleConfigs.for_every_variant(env["CPPPATH"] + [includes])
|
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)
|
self.arg_dict["cmdargs"] += ModuleConfigs.for_every_variant(cli_args)
|
||||||
|
|
||||||
def build_commandline(self, commands):
|
def build_commandline(self, commands):
|
||||||
|
Loading…
Reference in New Issue
Block a user