diff options
author | Brad King <brad.king@kitware.com> | 2014-08-07 18:53:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-08-20 14:19:49 (GMT) |
commit | df3b007d7f904f8de5877f3e05b629239af7220a (patch) | |
tree | bf0f6ea804beac70c0a41cf1647d90f16820f311 /Tests/VSMASM/foo.asm | |
parent | e872744990f48777a1f1cebc791911363515092d (diff) | |
download | CMake-df3b007d7f904f8de5877f3e05b629239af7220a.zip CMake-df3b007d7f904f8de5877f3e05b629239af7220a.tar.gz CMake-df3b007d7f904f8de5877f3e05b629239af7220a.tar.bz2 |
VS: Add test for MASM support
It is now expected to work with VS >= 10 and MSVC >= 13.1.
Diffstat (limited to 'Tests/VSMASM/foo.asm')
-rw-r--r-- | Tests/VSMASM/foo.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/VSMASM/foo.asm b/Tests/VSMASM/foo.asm new file mode 100644 index 0000000..51cb969 --- /dev/null +++ b/Tests/VSMASM/foo.asm @@ -0,0 +1,7 @@ +ifndef TESTx64 +.386 +.model flat, c +endif +.code +include <foo-proc.asm> +end |