Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
lb90 committed Nov 22, 2024
1 parent 3762b71 commit f498add
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mesonbuild/backend/vs2010backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,6 +1297,9 @@ def add_non_makefile_vcxproj_elements(

build_args_copy = build_args_.copy()

print('build args copy:')
print(build_args_copy)

def check_build_arg(name, remove = True):
index = None
try:
Expand Down Expand Up @@ -1439,6 +1442,8 @@ def get_remaining_build_args():
have_no_logo = check_build_arg('/nologo', remove=True)

additional = get_remaining_build_args()
print('additional (main):')
print(additional)
if additional:
ET.SubElement(clconf, 'AdditionalOptions').text = additional

Expand Down

0 comments on commit f498add

Please sign in to comment.