summaryrefslogtreecommitdiff
path: root/indra/cmake/EXPAT.cmake
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-10 12:12:51 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-10 12:12:51 -0500
commit771c7dd3c00e2eecfaa7382e41abb3b643cda84a (patch)
tree9321438cd5767a18cc4cd1b1f963151c650c289a /indra/cmake/EXPAT.cmake
parent8a3ea42a21880eee21cb21c5f2a4ff4d444b04d9 (diff)
DRTVWR-418: Update some copy commands for 3p library versions.
Diffstat (limited to 'indra/cmake/EXPAT.cmake')
-rw-r--r--indra/cmake/EXPAT.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/cmake/EXPAT.cmake b/indra/cmake/EXPAT.cmake
index c1155531ff..cddc71b227 100644
--- a/indra/cmake/EXPAT.cmake
+++ b/indra/cmake/EXPAT.cmake
@@ -10,8 +10,14 @@ else (USESYSTEMLIBS)
use_prebuilt_binary(expat)
if (WINDOWS)
set(EXPAT_LIBRARIES libexpatMT)
+ set(EXPAT_COPY libexpatMT.dll)
else (WINDOWS)
set(EXPAT_LIBRARIES expat)
+ if (DARWIN)
+ set(EXPAT_COPY libexpat.1.dylib libexpat.dylib)
+ else ()
+ set(EXPAT_COPY libexpat.so.1 libexpat.so)
+ endif ()
endif (WINDOWS)
set(EXPAT_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include)
endif (USESYSTEMLIBS)