
The Ninja and Makefile generators honor `target_compile_options` and friends for ASM_MARMMASM `.asm` sources. Teach the VS generator to honor them too for consistency. Issue: #24289
11 lines
93 B
NASM
11 lines
93 B
NASM
AREA |.text|, CODE
|
|
|
|
EXPORT foo
|
|
|
|
foo PROC
|
|
mov w0, #zero
|
|
ret
|
|
ENDP
|
|
|
|
END
|