diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-04-27 19:52:04 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-04-27 19:52:04 +0800 |
commit | 7cd7110c3b29ce74b1abe0cf307015e49199d766 (patch) | |
tree | e29710e755c52af835f030883c75e85d05cffdef /indra/llmessage | |
parent | bdb253731ed4ae3276e2da5a5d72ae8866f99eed (diff) |
Replace USE_AUTOBUILD_3P OR USE_CONAN with USESYSTEMLIBS
Simpler.
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt index 5ca62352a3..43e9c580dc 100644 --- a/indra/llmessage/CMakeLists.txt +++ b/indra/llmessage/CMakeLists.txt @@ -197,7 +197,7 @@ target_link_libraries( ) target_include_directories( llmessage INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) -if (NOT (USE_AUTOBUILD_3P OR USE_CONAN)) +if (USESYSTEMLIBS) if (CMAKE_CXX_COMPILER_ID MATCHES "GNU") set_source_files_properties(llnamevalue.cpp PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation) |