Skip to content

Commit 45a6f02

Browse files
chore: add LANGUAGE ASM_MASM property to source files (#145)
* add LANGUAGE ASM_MASM property to source files * add LANGUAGE ASM_MARMASM property to source files + fix indentation
1 parent 22121b6 commit 45a6f02

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

util/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,12 +390,21 @@ 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
)
403+
set_source_files_properties(
404+
misc/capture_context_win.asm
405+
win/safe_terminate_process.asm
406+
PROPERTIES LANGUAGE ASM_MASM
407+
)
399408
endif()
400409
endif()
401410

0 commit comments

Comments
 (0)