Skip to content

Commit d4694e6

Browse files
committed
add LANGUAGE ASM_MARMASM property to source files + fix indentation
1 parent 50e66e9 commit d4694e6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

util/CMakeLists.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,16 +390,20 @@ if(WIN32)
390390
target_sources(crashpad_util PRIVATE
391391
misc/capture_context_win_arm64.asm
392392
)
393+
set_source_files_properties(
394+
misc/capture_context_win_arm64.asm
395+
PROPERTIES LANGUAGE ASM_MARMASM
396+
)
393397
endif()
394398
else()
395399
target_sources(crashpad_util PRIVATE
396400
misc/capture_context_win.asm
397401
win/safe_terminate_process.asm
398402
)
399403
set_source_files_properties(
400-
misc/capture_context_win.asm
401-
win/safe_terminate_process.asm
402-
PROPERTIES LANGUAGE ASM_MASM
404+
misc/capture_context_win.asm
405+
win/safe_terminate_process.asm
406+
PROPERTIES LANGUAGE ASM_MASM
403407
)
404408
endif()
405409
endif()

0 commit comments

Comments
 (0)