summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2011-03-17 22:51:23 -0700
committerMerov Linden <merov@lindenlab.com>2011-03-17 22:51:23 -0700
commit28eaade69b4b330db7a9dfea528cc4f0a3998841 (patch)
tree212c6bd2f8a3e8635af88c4cad23f51331fb2642 /indra
parent6ba6c430bcfeb1ff6ed3b2c5c673b586b562008a (diff)
Autobuild: Fix Mac building failure: c-ares linking of mac_updater
Diffstat (limited to 'indra')
-rw-r--r--indra/mac_updater/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/mac_updater/CMakeLists.txt b/indra/mac_updater/CMakeLists.txt
index a4a6b50c6c..00dcedecaa 100644
--- a/indra/mac_updater/CMakeLists.txt
+++ b/indra/mac_updater/CMakeLists.txt
@@ -5,6 +5,7 @@ project(mac_updater)
include(00-Common)
include(OpenSSL)
include(CURL)
+include(CARes)
include(LLCommon)
include(LLVFS)
include(Linking)
@@ -12,6 +13,8 @@ include(Linking)
include_directories(
${LLCOMMON_INCLUDE_DIRS}
${LLVFS_INCLUDE_DIRS}
+ ${CURL_INCLUDE_DIRS}
+ ${CARES_INCLUDE_DIRS}
)
set(mac_updater_SOURCE_FILES
@@ -53,6 +56,7 @@ target_link_libraries(mac-updater
${OPENSSL_LIBRARIES}
${CRYPTO_LIBRARIES}
${CURL_LIBRARIES}
+ ${CARES_LIBRARIES}
${LLCOMMON_LIBRARIES}
)