BLOG main image
분류 전체보기 (27)
스윙 (5)
스터디 (14)
외부링크 (2)
미분류 (2)
(4)
Visitors up to today!
Today hit, Yesterday hit
daisy rss
tistory 티스토리 가입하기!
2013. 11. 3. 21:32
[]

1. boost.org  사이트에서 최신 라이브러리를 다운 받는다.

http://www.boost.org/

2. vs 프롬프트 실행


2-1. 압출을 풀고 해당 폴더에서

booststrap 실행


2-2. 프롬프트에서 아래 명령 실행

bjam toolset=msvc-10.0 variant=debug,release threading=multi link=static


msvc 버전 확인은 ( https://ko.wikipedia.org/wiki/%EB%B9%84%EC%A3%BC%EC%96%BC_C%2B%2B )


3. 설치 이후 해당 폴더

포함디렉토리에

설치된 디렉토리 추가

E:\boost\boost_1_54_0

라이브러리에 추가

E:\boost\boost_1_54_0\stage\lib

 

 

4.기본 boost라이브러리 추가후 빌드

 

 

 

#include "stdafx.h"
#include <iostream>
#include <boost/asio.hpp>

int _tmain(int argc, _TCHAR* argv[])
{
 return 0;