From df0b7a08cf3b57c555da305dcebb11f479add77c Mon Sep 17 00:00:00 2001 From: Shyotl Date: Sun, 1 May 2016 20:43:01 -0500 Subject: [PATCH] New library dependency: libboost_chrono --- indra/cmake/Boost.cmake | 9 +++++++++ indra/llcommon/CMakeLists.txt | 1 + indra/newview/CMakeLists.txt | 1 + 3 files changed, 11 insertions(+) diff --git a/indra/cmake/Boost.cmake b/indra/cmake/Boost.cmake index 844d5dc49..81727aef6 100644 --- a/indra/cmake/Boost.cmake +++ b/indra/cmake/Boost.cmake @@ -36,6 +36,9 @@ else (STANDALONE) set(Boost_THREAD_LIBRARY optimized libboost_thread-mt debug libboost_thread-mt-gd) + set(Boost_CHRONO_LIBRARY + optimized libboost_chrono-mt + debug libboost_chrono-mt-gd) elseif (LINUX) set(Boost_CONTEXT_LIBRARY optimized boost_context-mt @@ -58,6 +61,9 @@ else (STANDALONE) set(Boost_THREAD_LIBRARY optimized boost_thread-mt debug boost_thread-mt-d) + set(Boost_CHRONO_LIBRARY + optimized libboost_chrono-mt + debug libboost_chrono-mt-d) elseif (DARWIN) set(Boost_CONTEXT_LIBRARY optimized boost_context-mt @@ -80,5 +86,8 @@ else (STANDALONE) set(Boost_THREAD_LIBRARY optimized boost_thread-mt debug boost_thread-mt-d) + set(Boost_CHRONO_LIBRARY + optimized libboost_chrono-mt + debug libboost_chrono-mt-d) endif (WINDOWS) endif (STANDALONE) diff --git a/indra/llcommon/CMakeLists.txt b/indra/llcommon/CMakeLists.txt index 568e0b3c9..497d09255 100644 --- a/indra/llcommon/CMakeLists.txt +++ b/indra/llcommon/CMakeLists.txt @@ -290,6 +290,7 @@ target_link_libraries( ${Boost_REGEX_LIBRARY} ${Boost_THREAD_LIBRARY} ${Boost_SYSTEM_LIBRARY} + ${Boost_CHRONO_LIBRARY} ${CORESERVICES_LIBRARY} ) diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 27ccabda6..3c6f4e621 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1641,6 +1641,7 @@ target_link_libraries(${VIEWER_BINARY_NAME} ${Boost_REGEX_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_DATE_TIME_LIBRARY} + ${Boost_CHRONO_LIBRARY} ${DBUSGLIB_LIBRARIES} ${OPENGL_LIBRARIES} ${FMOD_LIBRARY} # must come after LLAudio