From 8e815221033d6d61c049a831669a83a0c9480bd7 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 26 Nov 2023 10:13:09 +0200 Subject: [PATCH] cmake: add ironwail .natvis to msvc project --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a04f8e..b208097 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -345,6 +345,13 @@ else() "${SRC}/Windows/QuakeSpasm.ico" "${SRC}/Windows/QuakeSpasm.rc" ) + + if(PROJECT_IRONWAIL AND MSVC) + set(OTHER_FILES + ${OTHER_FILES} + "${SRC}/Windows/VisualStudio/ironwail.natvis" + ) + endif() endif() if(NOT CMAKE_BUILD_TYPE)