diff options
author | Nicky Dasmijn <nicky.dasmijn@posteo.nl> | 2024-08-06 15:20:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 16:20:05 +0300 |
commit | fd15b4309b126fd5f83f2091c060a6043e18fdbf (patch) | |
tree | 885b2202535381cf72622b1ddb2f97e89125f065 /indra/cmake/Linking.cmake | |
parent | 6a9cd405a3608afeddab8f18e8648d4ccde47268 (diff) |
Ignore VmallocTotal as it's fixed, huge Number. (#2200)
Not ignoring it will cause a lot of log spam due to conversion/parse errors.
Diffstat (limited to 'indra/cmake/Linking.cmake')
-rw-r--r-- | indra/cmake/Linking.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/cmake/Linking.cmake b/indra/cmake/Linking.cmake index 0ab30d0800..e6ce902b61 100644 --- a/indra/cmake/Linking.cmake +++ b/indra/cmake/Linking.cmake @@ -7,6 +7,7 @@ set(ARCH_PREBUILT_DIRS ${AUTOBUILD_INSTALL_DIR}/lib) set(ARCH_PREBUILT_DIRS_PLUGINS ${AUTOBUILD_INSTALL_DIR}/plugins) set(ARCH_PREBUILT_DIRS_RELEASE ${AUTOBUILD_INSTALL_DIR}/lib/release) set(ARCH_PREBUILT_DIRS_DEBUG ${AUTOBUILD_INSTALL_DIR}/lib/debug) + if (WINDOWS OR DARWIN ) # Kludge for older cmake versions, 3.20+ is needed to use a genex in add_custom_command( OUTPUT <var> ... ) # Using this will work okay-ish, as Debug is not supported anyway. But for property multi config and also |