diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2023-10-26 13:26:48 -0700 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2023-10-26 13:32:50 -0700 |
commit | a35356a39cab33aca6e940324628228a0ad28169 (patch) | |
tree | 0962bf47769a1d37d62a83e4be0967bec3d1989f /indra/newview | |
parent | 3ecce24f9f1a930f9765920a2818e5f5081d696c (diff) |
SL-20536: Fix build error C1128. secondlife-bin object file too big. Compile with /bigobj
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 026bdd5c4c..c5477fdbd5 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1699,6 +1699,7 @@ if (WINDOWS) LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;LIBCMTD;MSVCRT\" /INCREMENTAL:NO /LARGEADDRESSAWARE" LINK_FLAGS_RELEASE "/FORCE:MULTIPLE /MAP\"secondlife-bin.MAP\" /OPT:REF /LARGEADDRESSAWARE" ) + target_compile_options(${VIEWER_BINARY_NAME} PRIVATE /bigobj) if(USE_PRECOMPILED_HEADERS) target_precompile_headers( ${VIEWER_BINARY_NAME} PRIVATE llviewerprecompiledheaders.h ) |