mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-15 19:20:44 -06:00
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
|