Skip to content

Commit

Permalink
Fix call to object_filename_from_source in vs2010
Browse files Browse the repository at this point in the history
There was a missing parameter in one call.
This was caused by b95e177
  • Loading branch information
bruchar1 committed Jan 28, 2025
1 parent ae1bb2f commit 31e8f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/backend/vs2010backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ def add_non_makefile_vcxproj_elements(
if self.environment.is_source(src):
target_private_dir = self.relpath(self.get_target_private_dir(t),
self.get_target_dir(t))
rel_obj = self.object_filename_from_source(t, src, target_private_dir)
rel_obj = self.object_filename_from_source(t, compiler, src, target_private_dir)
extra_link_args.append(rel_obj)

extra_link_args.extend(self.flatten_object_list(t))
Expand Down

0 comments on commit 31e8f86

Please sign in to comment.