diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-04 06:16:17 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-04 06:16:17 +0800 |
commit | 8e096fdcdcfa4f8db762dfb9a2b8dd4e29c78eea (patch) | |
tree | 95f9a8f33d638661f2fbe930b261bdf10f96161a | |
parent | f0de1898e0b6a3b9f1ee1bcc762ba334b78bbcc6 (diff) |
Exclude Windows from compiling llappviewerlinux
That's why it was trying to find llwindowsdl.h, through
llappviewerlinux.cpp. I had to scroll up a bit to find out that it was
trying to compile llappviewerlinux.cpp. The last error message only
complained about missing SDL/SDL.h (referred from llwindowsdl.h).
-rw-r--r-- | indra/newview/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index e61bb26c7e..6657eee0b2 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1492,7 +1492,7 @@ if (DARWIN) list(APPEND viewer_SOURCE_FILES ${viewer_RESOURCE_FILES}) endif (DARWIN) -if (NOT DARWIN) +if (NOT (DARWIN OR WINDOWS)) LIST(APPEND viewer_SOURCE_FILES llappviewerlinux.cpp) set_source_files_properties( llappviewerlinux.cpp |