diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2013-02-21 18:57:24 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2013-02-21 18:57:24 -0500 |
commit | d8ce2ec0a019049b84239f5a0e3a34514b88d247 (patch) | |
tree | 2c2126196250f66ee3330a1bc6dc0c6de3825194 /indra | |
parent | 54e2d2b000f36b35ab5ab53cf3aeee922e54fbe3 (diff) |
MAINT-2389: Tell CMake viewer_components/login depends on Boost.Context
This addresses a Linux link failure due to the Linux linker making a single
left-to-right pass through libraries.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/viewer_components/login/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/viewer_components/login/CMakeLists.txt b/indra/viewer_components/login/CMakeLists.txt index 28b87bf663..1139fecd16 100644 --- a/indra/viewer_components/login/CMakeLists.txt +++ b/indra/viewer_components/login/CMakeLists.txt @@ -9,6 +9,7 @@ endif(LL_TESTS) include(LLCommon) include(LLMath) include(LLXML) +include(Boost) include_directories( ${LLCOMMON_INCLUDE_DIRS} @@ -40,6 +41,7 @@ target_link_libraries(lllogin ${LLCOMMON_LIBRARIES} ${LLMATH_LIBRARIES} ${LLXML_LIBRARIES} + ${BOOST_CONTEXT_LIBRARY} ) if(LL_TESTS) |