diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-05-13 14:38:19 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-05-13 14:38:19 +0800 |
commit | 90a13441c31ffe3e5afc0a2ea1b50b3182241992 (patch) | |
tree | 22404b65bd616225cfbd9253089f25838d622691 /indra/cmake/LLCommon.cmake | |
parent | fe4c0bede1cd55395cebe80e8fa9a44f679e5d71 (diff) |
Include Expat *before* APR when configuring deps
On some platforms where there's no such system library, and no
prebuilt binaries for them, Expat needs to be built first before
APR, because apr-util depends on Expat.
Diffstat (limited to 'indra/cmake/LLCommon.cmake')
-rw-r--r-- | indra/cmake/LLCommon.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/LLCommon.cmake b/indra/cmake/LLCommon.cmake index dd43ca4916..91e376352f 100644 --- a/indra/cmake/LLCommon.cmake +++ b/indra/cmake/LLCommon.cmake @@ -1,8 +1,8 @@ # -*- cmake -*- +include(EXPAT) include(APR) include(Boost) -include(EXPAT) include(Tracy) include(xxHash) include(ZLIBNG) |