web-dev-qa-db-ja.com

CMakeを使用してC ++プログラムとBoostをリンクする方法

UbuntuでプログラムをBoostライブラリにリンクするために、CMakeファイルはどのように見えますか?

makeの実行中に表示されるエラー:

main.cpp:(.text+0x3b): undefined reference to `boost::program_options::options_description::m_default_line_length'

メインファイルは本当にシンプルです:

#include <boost/program_options/options_description.hpp>
#include <boost/program_options/option.hpp>
using namespace std;
#include <iostream>

namespace po = boost::program_options;

int main(int argc, char** argv) {

    po::options_description desc("Allowed options");
    desc.add_options()
        ("help", "produce help message")
        ;

    return 0;
}

なんとかできました。 CMakeファイルに追加した行は次のとおりです。

target_link_libraries(
my_target_file
${Boost_PROGRAM_OPTIONS_LIBRARY}
)
98

CMakeでは、find_packageを使用して必要なライブラリを見つけることができます。通常、CMakeインストールと共にFindBoost.cmakeがあります。

私が覚えている限り、それは/usr/share/cmake/Modules/に、一般的なライブラリの他の検索スクリプトとともにインストールされます。動作の詳細については、そのファイルのドキュメントを確認してください。

私の頭の中の例:

FIND_PACKAGE( Boost 1.40 COMPONENTS program_options REQUIRED )
INCLUDE_DIRECTORIES( ${Boost_INCLUDE_DIR} )

ADD_EXECUTABLE( anyExecutable myMain.cpp )

TARGET_LINK_LIBRARIES( anyExecutable LINK_PUBLIC ${Boost_LIBRARIES} )

このコードがお役に立てば幸いです。

135
MOnsDaR

以下は私の設定です:

cmake_minimum_required(VERSION 2.8)
set(Boost_INCLUDE_DIR /usr/local/src/boost_1_46_1)
set(Boost_LIBRARY_DIR /usr/local/src/boost_1_46_1/stage/lib)
find_package(Boost COMPONENTS system filesystem REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
link_directories(${Boost_LIBRARY_DIR})

add_executable(main main.cpp)
target_link_libraries( main ${Boost_LIBRARIES} )
47
Dean Chen

インポートされたターゲットで最新のCMake構文に@MOnsDaRの回答を適応させると、次のようになります。

find_package(Boost 1.40 COMPONENTS program_options REQUIRED)

add_executable(anyExecutable myMain.cpp)

target_link_libraries(anyExecutable Boost::program_options)

インクルードディレクトリは、インポートされたターゲットBoost::program_optionsを介してすでに処理されているため、手動でインクルードディレクトリを指定する必要はありません。

17
oLen

どのBoostライブラリですか?それらの多くは純粋なテンプレートであり、リンクを必要としません。

Boostプログラムのオプションが必要であることを示す実際の具体例を示して(さらに、Ubuntuを使用していることを教えてくれます)、次の2つのことを行う必要があります。

  1. リンクできるようにlibboost-program-options-devをインストールします。
  2. libboost_program_optionsに対してリンクするようcmakeに伝えます。

私は主にMakefileを使用しているため、直接コマンドラインを使用します。

$ g++ boost_program_options_ex1.cpp -o bpo_ex1 -lboost_program_options
$ ./bpo_ex1
$ ./bpo_ex1 -h
$ ./bpo_ex1 --help
$ ./bpo_ex1 -help
$

それは多くのことをしないようです。

CMakeの場合、boost_program_optionsをライブラリのリストに追加する必要があり、IIRCはCMakeLists.txtSET(liblist boost_program_options)を介して実行されます。

4

システムのデフォルトのインストールパスを使用する2つの方法、通常は/usr/lib/x86_64-linux-gnu/

find_package(Boost REQUIRED regex date_time system filesystem thread graph)
include_directories(${BOOST_INCLUDE_DIRS})
message("boost lib: ${Boost_LIBRARIES}")
message("boost inc:${Boost_INCLUDE_DIR}")

add_executable(use_boost use_boost.cpp)
target_link_libraries(use_boost
        ${Boost_LIBRARIES}
        )

Boostをローカルディレクトリにインストールする場合、またはシステムインストールの代わりにローカルインストールを選択する場合は、次の方法で実行できます。

set( BOOST_ROOT "/home/xy/boost_install/lib/" CACHE PATH "Boost library path" )
set( Boost_NO_SYSTEM_PATHS on CACHE BOOL "Do not search system for Boost" )

find_package(Boost REQUIRED regex date_time system filesystem thread graph)
include_directories(${BOOST_INCLUDE_DIRS})
message("boost lib: ${Boost_LIBRARIES}, inc:${Boost_INCLUDE_DIR}")

add_executable(use_boost use_boost.cpp)
target_link_libraries(use_boost
        ${Boost_LIBRARIES}
        )

上記のディレクトリ/home/xy/boost_install/lib/は、Boostをインストールする場所です。

xy@xy:~/boost_install/lib$ ll -th
total 16K
drwxrwxr-x 2 xy xy 4.0K May 28 19:23 lib/
drwxrwxr-x 3 xy xy 4.0K May 28 19:22 include/

xy@xy:~/boost_install/lib$ ll -th lib/
total 57M
drwxrwxr-x 2 xy xy 4.0K May 28 19:23 ./
-rw-rw-r-- 1 xy xy 2.3M May 28 19:23 libboost_test_exec_monitor.a
-rw-rw-r-- 1 xy xy 2.2M May 28 19:23 libboost_unit_test_framework.a
.......

xy@xy:~/boost_install/lib$ ll -th include/
total 20K
drwxrwxr-x 110 xy xy  12K May 28 19:22 boost/

ローカルにインストールされたBoostの使用方法に興味がある場合は、この質問をご覧くださいCMakeに代替のBoostインストールを見つけるにはどうすればよいですか?

3
Jayhello