Boost 다운 받기
1. Boost 사이트의 화면 오른쪽에 Download
2. 윈도우 Zip version 다운 (약 180MB)
3. 다운받은 파일 압축 풀기 : 적절한 디렉토리에 압축을 풀어줍니다.
- C:\cpp\boost_1_76_0
Boost 설치 방법
* index.html 실행 -> Get Started -> " boost_1_76_0/more/getting_started/windows.html "
* index.html을 실행시키고 gettring statred 로 이동하면
아래와 같이 Boost 로고와 Getting Started on Windows 제목이 나옵니다.
* Visual Studio IDE 를 참조해 Dev C++ 에서도 boost build 가 가능하게 연결해줄 수 있습니다.
4.1 Build From the Visual Studio IDE
Then hold down the control key and press "Z", followed by the Return key. |
Dev C++에 Boost 연결하기
4. boost 코드 테스트해보기 -> 실패
#include <boost/lambda/lambda.hpp>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
using namespace boost::lambda;
typedef std::istream_iterator<int> in;
std::for_each(
in(std::cin), in(), std::cout << (_1 * 3) << " " );
}
* boost 연결이 안되어 있으니 compile error!
5. boost library 연결하기
6. Project Option -> Directories -> Library Directories -> add "boost directory"
7. Project Option -> Directories -> Include Directories -> add "boost directory"
8. boost 코드 테스트해보기 -> 성공
* 1 2 3 을 입력하면 결과로 3 6 9 를 보여줍니다. 숫자가 아닌 값을 넣으면 종료됩니다.
9. 완료
'C++' 카테고리의 다른 글
[C++] header : iostream, cstdio, cstdlib, (0) | 2021.08.04 |
---|---|
[C++] using namespace std; (0) | 2021.08.03 |
[C++] namespace, using (0) | 2021.08.02 |
Online C++ compiler (무료 온라인 C++ 컴파일러) (0) | 2021.08.01 |
c++공부 준비 : 컴파일러 (g++), dev c++ 툴 설치 (0) | 2021.07.28 |
댓글