From 7766689f21af922278b12abe7ee61996eecb0a1c Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Thu, 7 May 2020 20:01:11 -0400
Subject: [PATCH] DRTVWR-476: Add /showIncludes to additional source files.

Having it on just one source file was frustrating because the project build
failed before it reached the one source file with the switch.
---
 indra/llwindow/CMakeLists.txt | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/indra/llwindow/CMakeLists.txt b/indra/llwindow/CMakeLists.txt
index 726147e8661..9322a69eea4 100644
--- a/indra/llwindow/CMakeLists.txt
+++ b/indra/llwindow/CMakeLists.txt
@@ -138,6 +138,14 @@ if (WINDOWS)
        llkeyboardwin32.cpp
        lldragdropwin32.cpp
        )
+  set_source_files_properties(
+       llwindowwin32.cpp
+       lldxhardware.cpp
+       llkeyboardwin32.cpp
+       lldragdropwin32.cpp
+       PROPERTIES
+       COMPILE_FLAGS "/showIncludes"
+       )
   list(APPEND llwindow_HEADER_FILES
        llwindowwin32.h
        lldxhardware.h
@@ -148,11 +156,6 @@ if (WINDOWS)
        comdlg32     # Common Dialogs for ChooseColor
        ole32
        )
-  set_source_files_properties(
-       llwindowwin32.cpp
-       PROPERTIES
-       COMPILE_FLAGS "/showIncludes"
-       )
 endif (WINDOWS)
 
 if (SOLARIS)
-- 
GitLab