diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2020-05-07 20:01:11 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-05-07 20:01:11 -0400 |
commit | 7766689f21af922278b12abe7ee61996eecb0a1c (patch) | |
tree | 920cb5bf2fc1720cbf89ac84752c9e13f9eeab44 /indra/llwindow | |
parent | df8e30b6708d94be89be324000e73ab70a3e2ecb (diff) |
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.
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/CMakeLists.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/indra/llwindow/CMakeLists.txt b/indra/llwindow/CMakeLists.txt index 726147e866..9322a69eea 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) |