Skip to content

Commit

Permalink
Fix the Python type error when creating the .sln file
Browse files Browse the repository at this point in the history
  • Loading branch information
HK-SHAO committed Mar 25, 2023
1 parent 0291fcd commit 19a8efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ def add_mode(
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):
Expand Down

0 comments on commit 19a8efc

Please sign in to comment.