summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-12-15 13:00:47 -0500
committerOz Linden <oz@lindenlab.com>2014-12-15 13:00:47 -0500
commit37cd872f40ffeb90d03ea5b0f9025670e920da43 (patch)
treeb114765da8ea42fdb1a53e435fe98e6dc1705964 /indra
parent062c13364bd6431974b59d9eadf137decdffdbee (diff)
include libuuid and fontconfig only on linux
Diffstat (limited to 'indra')
-rwxr-xr-xindra/cmake/ViewerMiscLibs.cmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/cmake/ViewerMiscLibs.cmake b/indra/cmake/ViewerMiscLibs.cmake
index d4be24799f..a805c28598 100755
--- a/indra/cmake/ViewerMiscLibs.cmake
+++ b/indra/cmake/ViewerMiscLibs.cmake
@@ -3,8 +3,10 @@ include(Prebuilt)
if (NOT USESYSTEMLIBS)
use_prebuilt_binary(libhunspell)
- use_prebuilt_binary(libuuid)
use_prebuilt_binary(slvoice)
- use_prebuilt_binary(fontconfig)
+ if (LINUX)
+ use_prebuilt_binary(libuuid)
+ use_prebuilt_binary(fontconfig)
+ endif (LINUX)
endif(NOT USESYSTEMLIBS)