diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:41:59 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-15 06:41:59 +0800 |
commit | ddd92b44c4248f90d6f1eca653fa9763ec766b80 (patch) | |
tree | 212939cb43372ce197455e95bcc99018058436ea /indra | |
parent | 1f8dde71118ee0e9928913544f5aebe44247246d (diff) |
Make sure OpenSSL is built before CURL
LLCoreHttp.cmake is included earlier (by llappearance/CMakeLists.txt),
before llcorehttp/CMakeLists.txt (even though it includes LLCoreHttp.cmake
in return).
Diffstat (limited to 'indra')
-rw-r--r-- | indra/cmake/LLCoreHttp.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/LLCoreHttp.cmake b/indra/cmake/LLCoreHttp.cmake index 22ed5fef9c..5464e4d327 100644 --- a/indra/cmake/LLCoreHttp.cmake +++ b/indra/cmake/LLCoreHttp.cmake @@ -1,5 +1,5 @@ # -*- cmake -*- -include(CURL) include(OpenSSL) +include(CURL) include(NGHTTP2) |