summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-05-08 12:27:24 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-05-08 12:27:24 -0400
commit239e072bfcf97b8a12c18ff9974fd0a2929c9ee4 (patch)
tree7501e84b359f2abec814af63953c995b096d3b35 /indra/cmake
parent7caef4bc6c348a4aad4a777df0d1ea34ab13ff00 (diff)
Unit test still giving me issues on the local windows system. Seems to be a hard stall
while allocating the first easy handle in a descent of the global initiailization code but that doesn't seem to be a problem on TC machines. Perhaps the static linking is creating multiple data copies. More work needed.
Diffstat (limited to 'indra/cmake')
-rw-r--r--indra/cmake/Boost.cmake20
1 files changed, 15 insertions, 5 deletions
diff --git a/indra/cmake/Boost.cmake b/indra/cmake/Boost.cmake
index 4a797d968a..2af0bc1b30 100644
--- a/indra/cmake/Boost.cmake
+++ b/indra/cmake/Boost.cmake
@@ -54,11 +54,21 @@ else (STANDALONE)
debug libboost_thread-mt-gd)
endif (MSVC80)
elseif (LINUX)
- set(BOOST_PROGRAM_OPTIONS_LIBRARY boost_program_options-mt)
- set(BOOST_REGEX_LIBRARY boost_regex-mt)
- set(BOOST_SYSTEM_LIBRARY boost_system-mt)
- set(BOOST_FILESYSTEM_LIBRARY boost_filesystem-mt)
- set(BOOST_THREAD_LIBRARY boost_thread-mt)
+ set(BOOST_PROGRAM_OPTIONS_LIBRARY
+ optimized boost_program_options-mt
+ debug boost_program_options-mt-d)
+ set(BOOST_REGEX_LIBRARY
+ optimized boost_regex-mt
+ debug boost_regex-mt-d)
+ set(BOOST_SYSTEM_LIBRARY
+ optimized boost_system-mt
+ debug boost_system-mt-d)
+ set(BOOST_FILESYSTEM_LIBRARY
+ optimized boost_filesystem-mt
+ debug boost_filesystem-mt-d)
+ set(BOOST_THREAD_LIBRARY
+ optimized boost_thread-mt
+ debug boost_thread-mt-d)
elseif (DARWIN)
set(BOOST_PROGRAM_OPTIONS_LIBRARY
optimized boost_program_options-mt