summaryrefslogtreecommitdiffstats
path: root/Tests/VSMASM
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-06-21 14:41:53 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-06-21 14:42:10 (GMT)
commitd13afe720a9a255e81593dc125f76b465fd12265 (patch)
treea0c67889819256f075a582a40432884af81dabcc /Tests/VSMASM
parent8340c4f0c07a337832c7f27d5c49e8d6df6cb39e (diff)
parentfaadb864748219152f9a026be5ef08d135f18173 (diff)
downloadCMake-d13afe720a9a255e81593dc125f76b465fd12265.zip
CMake-d13afe720a9a255e81593dc125f76b465fd12265.tar.gz
CMake-d13afe720a9a255e81593dc125f76b465fd12265.tar.bz2
Merge topic 'masm-static-lib'
faadb86474 ASM_MASM: Add support for masm-only static libraries Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9612
Diffstat (limited to 'Tests/VSMASM')
-rw-r--r--Tests/VSMASM/CMakeLists.txt1
-rw-r--r--Tests/VSMASM/empty.asm1
2 files changed, 2 insertions, 0 deletions
diff --git a/Tests/VSMASM/CMakeLists.txt b/Tests/VSMASM/CMakeLists.txt
index 49bd24a..bf9a4b8 100644
--- a/Tests/VSMASM/CMakeLists.txt
+++ b/Tests/VSMASM/CMakeLists.txt
@@ -10,3 +10,4 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
add_executable(VSMASM main.c foo.asm)
target_compile_definitions(VSMASM PUBLIC DEF_FOO)
target_compile_options(VSMASM PUBLIC -DDEF_BAR)
+add_library(empty STATIC empty.asm)
diff --git a/Tests/VSMASM/empty.asm b/Tests/VSMASM/empty.asm
new file mode 100644
index 0000000..a6a9baf
--- /dev/null
+++ b/Tests/VSMASM/empty.asm
@@ -0,0 +1 @@
+end