diff options
author | callum_linden <none@none> | 2014-10-22 10:09:24 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-22 10:09:24 -0700 |
commit | 745151936e44347b98d48932174168634b72256b (patch) | |
tree | 9878c2c064f0ba623bd052230a9848df8ee4b3fd /indra/viewer_components/login | |
parent | fc9487269309cc55c4a519b738c4a257de4222e0 (diff) |
Update to build on Xcode 6.0 (fix unit tests): fix up Boost linker errors
Diffstat (limited to 'indra/viewer_components/login')
-rwxr-xr-x | indra/viewer_components/login/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/viewer_components/login/CMakeLists.txt b/indra/viewer_components/login/CMakeLists.txt index ce80d55829..35058f1201 100755 --- a/indra/viewer_components/login/CMakeLists.txt +++ b/indra/viewer_components/login/CMakeLists.txt @@ -46,6 +46,7 @@ target_link_libraries(lllogin ${LLMATH_LIBRARIES} ${LLXML_LIBRARIES} ${BOOST_CONTEXT_LIBRARY} + ${BOOST_THREAD_LIBRARY} ${BOOST_COROUTINE_LIBRARY} ${BOOST_SYSTEM_LIBRARY} ) @@ -57,7 +58,7 @@ if(LL_TESTS) set_source_files_properties( lllogin.cpp PROPERTIES - LL_TEST_ADDITIONAL_LIBRARIES "${BOOST_CONTEXT_LIBRARY};${BOOST_COROUTINE_LIBRARY};${BOOST_SYSTEM_LIBRARY}" + LL_TEST_ADDITIONAL_LIBRARIES "${BOOST_CONTEXT_LIBRARY};${BOOST_THREAD_LIBRARY};${BOOST_COROUTINE_LIBRARY};${BOOST_SYSTEM_LIBRARY}" ) LL_ADD_PROJECT_UNIT_TESTS(lllogin "${lllogin_TEST_SOURCE_FILES}") |