1

重複の可能性:
Codeblocks の Boost ライブラリ設定

ブーストを使ったプログラムを書きたいです。実際、これは Boost Getting Started の Web ページからのプログラムです。それは:

#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) << " " );
}

ビルドすると、エラーのリストが表示されました: error: boost/lambda/lambda.hpp: No such file or directory error: 'boost' has not been defined ... これらのエラーに対して何ができますか? 「コンパイラとデバッガ」と「グローバル変数」の設定方法です。

4

0 に答える 0