http://blog.csdn.net/zengraoli/article/details/51322484 2016 從http://www.上下載到目前最新的boost庫,快速傳送門:boost_1_60_0.zip
得到源代碼之后,使用vs2013的cl.exe編譯
進入到源代碼目錄中
建立編譯工具bjam.exe----需要執(zhí)行bootstrap.bat
指定msvc版本12.0對應的是vs2013,--stagedir是指定編譯后存放的目錄
- bjam stage --toolset=msvc-12.0 --without-graph --without-graph_parallel --stagedir="D:\boost\boost_1_60_0\bin\vc12" link=static runtime-link=shared runtime-link=static threading=multi debug release
稍微等一會,庫就編譯好了……
首先需要設定文件包含目錄:
我的boost庫解壓在D盤下
設定庫目錄:
然后建立我們的第一個boost項目,代碼如下:
- #include "boost/thread.hpp"
- #include "iostream"
- using namespace std;
-
-
- void mythread()
- {
- cout << " hello,thread! " << endl;
- }
-
-
- int _tmain(int argc, _TCHAR* argv[])
- {
- boost::function<void()> f(mythread);
- boost::thread t(f);
- t.join();
- cout << " thread is over! " << endl;
-
-
- return 0;
- }
|