summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-08-15 06:41:59 +0800
committerErik Kundiman <erik@megapahit.org>2024-08-15 06:41:59 +0800
commitddd92b44c4248f90d6f1eca653fa9763ec766b80 (patch)
tree212939cb43372ce197455e95bcc99018058436ea /indra/cmake
parent1f8dde71118ee0e9928913544f5aebe44247246d (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/cmake')
-rw-r--r--indra/cmake/LLCoreHttp.cmake2
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)