From 9d9263739037e64035b24c33c5c8e61ec5a2eeb3 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 30 Nov 2019 05:48:59 -0800
Subject: [PATCH] Force dependencies to be position independent code

---
 indra/deps/CMakeLists.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/indra/deps/CMakeLists.txt b/indra/deps/CMakeLists.txt
index 77032a7636..59a65958f2 100644
--- a/indra/deps/CMakeLists.txt
+++ b/indra/deps/CMakeLists.txt
@@ -3,6 +3,7 @@ project(deps)
 include(FetchContent)
 
 set(CMAKE_FOLDER "Third Party")
+set(CMAKE_POSITION_INDEPENDENT_CODE ON)
 
 FetchContent_Declare(
   Catch2
@@ -41,4 +42,5 @@ endif()
 #Download the rest of the libraries
 FetchContent_MakeAvailable(fmt)
 
-set(CMAKE_FOLDER "")
+unset(CMAKE_FOLDER)
+unset(CMAKE_POSITION_INDEPENDENT_CODE)
-- 
GitLab