summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-12-18 09:55:12 -0800
committerRider Linden <rider@lindenlab.com>2015-12-18 09:55:12 -0800
commit6b4151d895935f9ae291085036bee336288a05dd (patch)
tree8326a7482278656046708a93e66834369c9eea4b /indra
parent9210dcb328b26d28dfbd703cf651de2e7d0ba898 (diff)
Adding RT to another cmake file for Linux
Diffstat (limited to 'indra')
-rwxr-xr-xindra/llmessage/CMakeLists.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/indra/llmessage/CMakeLists.txt b/indra/llmessage/CMakeLists.txt
index 78c84f366a..589dcaecd8 100755
--- a/indra/llmessage/CMakeLists.txt
+++ b/indra/llmessage/CMakeLists.txt
@@ -203,6 +203,8 @@ set_source_files_properties(${llmessage_HEADER_FILES}
list(APPEND llmessage_SOURCE_FILES ${llmessage_HEADER_FILES})
add_library (llmessage ${llmessage_SOURCE_FILES})
+
+if (LINUX)
target_link_libraries(
llmessage
${CURL_LIBRARIES}
@@ -217,7 +219,25 @@ target_link_libraries(
${BOOST_COROUTINE_LIBRARY}
${BOOST_CONTEXT_LIBRARY}
${BOOST_SYSTEM_LIBRARY}
+ rt
)
+else (LINUX)
+target_link_libraries(
+ llmessage
+ ${CURL_LIBRARIES}
+ ${LLCOMMON_LIBRARIES}
+ ${LLVFS_LIBRARIES}
+ ${LLMATH_LIBRARIES}
+ ${JSONCPP_LIBRARIES}
+ ${OPENSSL_LIBRARIES}
+ ${CRYPTO_LIBRARIES}
+ ${XMLRPCEPI_LIBRARIES}
+ ${LLCOREHTTP_LIBRARIES}
+ ${BOOST_COROUTINE_LIBRARY}
+ ${BOOST_CONTEXT_LIBRARY}
+ ${BOOST_SYSTEM_LIBRARY}
+ )
+endif(LINUX)
# tests
if (LL_TESTS)
@@ -231,6 +251,8 @@ if (LL_TESTS)
# set(TEST_DEBUG on)
+if (LINUX)
+
set(test_libs
${WINDOWS_LIBRARIES}
${LLVFS_LIBRARIES}