@@ -7,78 +7,90 @@ set(Boost_FIND_REQUIRED ON)
77if (STANDALONE)
88 include (FindBoost )
99
10- set (Boost_USE_MULTITHREADED ON )
11- find_package (Boost 1.51.0 COMPONENTS date_time filesystem program_options regex system thread wave context )
10+ set (BOOST_FILESYSTEM_LIBRARY boost_filesystem-mt)
11+ set (BOOST_PROGRAM_OPTIONS_LIBRARY boost_program_options-mt)
12+ set (BOOST_REGEX_LIBRARY boost_regex-mt)
13+ set (BOOST_SIGNALS_LIBRARY boost_signals-mt)
1214else (STANDALONE )
1315 use_prebuilt_binary (boost )
1416 set (Boost_INCLUDE_DIRS ${LIBS_PREBUILT_DIR} /include)
15- set (Boost_VERSION "1.60" )
17+ set (BOOST_VERSION "1.60" )
1618
1719 if (WINDOWS)
18- set (Boost_CONTEXT_LIBRARY
20+ set (BOOST_CHRONO_LIBRARY
21+ optimized libboost_chrono-mt
22+ debug libboost_chrono-mt-gd)
23+ set (BOOST_CONTEXT_LIBRARY
1924 optimized libboost_context-mt
2025 debug libboost_context-mt-gd)
21- set (Boost_FILESYSTEM_LIBRARY
26+ set (BOOST_FILESYSTEM_LIBRARY
2227 optimized libboost_filesystem-mt
2328 debug libboost_filesystem-mt-gd)
24- set (Boost_PROGRAM_OPTIONS_LIBRARY
29+ set (BOOST_PROGRAM_OPTIONS_LIBRARY
2530 optimized libboost_program_options-mt
2631 debug libboost_program_options-mt-gd)
27- set (Boost_REGEX_LIBRARY
32+ set (BOOST_REGEX_LIBRARY
2833 optimized libboost_regex-mt
2934 debug libboost_regex-mt-gd)
30- set (Boost_SIGNALS_LIBRARY
35+ set (BOOST_SIGNALS_LIBRARY
3136 optimized libboost_signals-mt
3237 debug libboost_signals-mt-gd)
33- set (Boost_SYSTEM_LIBRARY
38+ set (BOOST_SYSTEM_LIBRARY
3439 optimized libboost_system-mt
3540 debug libboost_system-mt-gd)
36- set (Boost_THREAD_LIBRARY
41+ set (BOOST_THREAD_LIBRARY
3742 optimized libboost_thread-mt
3843 debug libboost_thread-mt-gd)
3944 elseif (LINUX )
40- set (Boost_CONTEXT_LIBRARY
45+ set (BOOST_CHRONO_LIBRARY
46+ optimized boost_chrono-mt
47+ debug boost_chrono-mt-d)
48+ set (BOOST_CONTEXT_LIBRARY
4149 optimized boost_context-mt
4250 debug boost_context-mt-d)
43- set (Boost_FILESYSTEM_LIBRARY
51+ set (BOOST_FILESYSTEM_LIBRARY
4452 optimized boost_filesystem-mt
4553 debug boost_filesystem-mt-d)
46- set (Boost_PROGRAM_OPTIONS_LIBRARY
54+ set (BOOST_PROGRAM_OPTIONS_LIBRARY
4755 optimized boost_program_options-mt
4856 debug boost_program_options-mt-d)
49- set (Boost_REGEX_LIBRARY
57+ set (BOOST_REGEX_LIBRARY
5058 optimized boost_regex-mt
5159 debug boost_regex-mt-d)
52- set (Boost_SIGNALS_LIBRARY
60+ set (BOOST_SIGNALS_LIBRARY
5361 optimized boost_signals-mt
5462 debug boost_signals-mt-d)
55- set (Boost_SYSTEM_LIBRARY
63+ set (BOOST_SYSTEM_LIBRARY
5664 optimized boost_system-mt
5765 debug boost_system-mt-d)
58- set (Boost_THREAD_LIBRARY
66+ set (BOOST_THREAD_LIBRARY
5967 optimized boost_thread-mt
6068 debug boost_thread-mt-d)
6169 elseif (DARWIN)
62- set (Boost_CONTEXT_LIBRARY
70+ set (BOOST_CHRONO_LIBRARY
71+ optimized boost_chrono-mt
72+ debug boost_chrono-mt-d)
73+ set (BOOST_CONTEXT_LIBRARY
6374 optimized boost_context-mt
6475 debug boost_context-mt-d)
65- set (Boost_FILESYSTEM_LIBRARY
76+ set (BOOST_FILESYSTEM_LIBRARY
6677 optimized boost_filesystem-mt
6778 debug boost_filesystem-mt-d)
68- set (Boost_PROGRAM_OPTIONS_LIBRARY
79+ set (BOOST_PROGRAM_OPTIONS_LIBRARY
6980 optimized boost_program_options-mt
7081 debug boost_program_options-mt-d)
71- set (Boost_REGEX_LIBRARY
82+ set (BOOST_REGEX_LIBRARY
7283 optimized boost_regex-mt
7384 debug boost_regex-mt-d)
74- set (Boost_SIGNALS_LIBRARY
85+ set (BOOST_SIGNALS_LIBRARY
7586 optimized boost_signals-mt
7687 debug boost_signals-mt-d)
77- set (Boost_SYSTEM_LIBRARY
88+ set (BOOST_SYSTEM_LIBRARY
7889 optimized boost_system-mt
7990 debug boost_system-mt-d)
80- set (Boost_THREAD_LIBRARY
91+ set (BOOST_THREAD_LIBRARY
8192 optimized boost_thread-mt
8293 debug boost_thread-mt-d)
8394 endif (WINDOWS )
8495endif (STANDALONE )
96+
0 commit comments