summaryrefslogtreecommitdiffstats
path: root/Tests/VSMASM/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* VS: Honor compile options for MASMBrad King2023-01-121-0/+2
| | | | | | | | The Ninja and Makefile generators honor `target_compile_options` and friends for MASM `.asm` sources. Teach the VS generator to honor them too for consistency. Fixes: #24289
* ASM_MASM: Populate MSVC debug information format abstraction tableBrad King2022-12-151-1/+1
| | | | | | | | | | | | | | In commit 0e96a20478 (MSVC: Add abstraction for debug information format, 2022-08-25, v3.25.0-rc1~142^2~1) we overlooked populating the runtime library selection flags for the Microsoft assembler. Its compiler id is `MSVC`, so our generators expect the table to be populated. It only supports `Embedded` debug info. Use empty flags for the other formats. Without this fix, enabling the `ASM_MASM` language with policy `CMP0141` set to `NEW` causes an error due to the missing table entries. Fixes: #24249
* Use string(APPEND) in TestsDaniel Pfeifer2016-07-271-1/+1
| | | | | | | Automate with: find Tests -type f -print0 | xargs -0 perl -i -0pe \ 's/set\(([a-zA-Z0-9_]+)(\s+)"\$\{\1\}([^"])/string(APPEND \1\2"\3/g'
* VS: Add test for MASM supportBrad King2014-08-201-0/+10
It is now expected to work with VS >= 10 and MSVC >= 13.1.