From 6f878571ec65d15f9e06af39375cc0251e4d1e2d Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 21 May 2018 13:54:39 -0400
Subject: [PATCH] SL-821: Add -fmodules to llappdelegate-objc.mm compile
 switches.

The BugsplatMac package is built as a module requiring @import. Using @import
requires Objective-C++ module support, which requires the -fmodules switch.
---
 indra/newview/CMakeLists.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index d28791485c8..3501fdf8007 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -1361,6 +1361,7 @@ if (DARWIN)
     llappdelegate-objc.mm
     PROPERTIES
     COMPILE_DEFINITIONS "${VIEWER_CHANNEL_VERSION_DEFINES}"
+    COMPILE_FLAGS "-fmodules"
     )
 
   find_library(AGL_LIBRARY AGL)
-- 
GitLab