CMake で pkg-config を使う
1664 ワード
標準で提供されている pkg-config 用のモジュールを使う。
- find_package() で PkgConfig を指定する
- 実体は cmake 標準の FindPkgConfig.cmake モジュール
- pkg_check_modules() で探したいライブラリーを指定する
- ここで検索結果に名前をつけることであとで参照できる
- 2 でつけた名前を使って -I オプションや -l オプションの指定をひっぱりだす
サンプル見たほうが早い。
CMakeLists.txt
# load the module to use pkg-config
find_package(PkgConfig)
# search library with pkg-config and name its results "LIBSAMPLE"
pkg_check_modules(LIBSAMPLE REQUIRED libsample)
# use the variable <RESULTNAME>_INCLUDE_DIRS to get include paths
include_directories(${LIBSAMPLE_INCLUDE_DIRS})
add_executable(sample
main.cpp
)
# use the variable <RESULTNAME>_LIBRARIES to get library paths
target_link_libraries(sample
${LIBSAMPLE_LIBRARIES}
)
Author And Source
この問題について(CMake で pkg-config を使う), 我々は、より多くの情報をここで見つけました https://qiita.com/janus_wel/items/e70695670c22a0331451著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .