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/llcommon | |
parent | bdb253731ed4ae3276e2da5a5d72ae8866f99eed (diff) |
Replace USE_AUTOBUILD_3P OR USE_CONAN with USESYSTEMLIBS
Simpler.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/CMakeLists.txt b/indra/llcommon/CMakeLists.txt index a76a134ec6..6aec3aada7 100644 --- a/indra/llcommon/CMakeLists.txt +++ b/indra/llcommon/CMakeLists.txt @@ -8,7 +8,7 @@ include(bugsplat) include(Linking) include(Boost) include(LLSharedLibs) -if (USE_AUTOBUILD_3P OR USE_CONAN) +if (NOT USESYSTEMLIBS) include(Copy3rdPartyLibs) endif () include(ZLIBNG) @@ -306,7 +306,7 @@ if (${LINUX_DISTRO} MATCHES debian OR (${LINUX_DISTRO} MATCHES ubuntu) OR (${LIN target_include_directories(llcommon PUBLIC ${LIBS_PREBUILT_DIR}/include) endif () -if (USE_AUTOBUILD_3P OR USE_CONAN) +if (NOT USESYSTEMLIBS) add_dependencies(llcommon stage_third_party_libs) else () target_compile_options(${PROJECT_NAME} PUBLIC -Wno-deprecated-declarations) |