gpt4 book ai didi

boost - 如何在 CMakeLists.txt 中添加 Boost 库?

转载 作者:行者123 更新时间:2023-12-03 00:54:57 27 4
gpt4 key购买 nike

我需要将 Boost 库添加到我的 CMakeLists.txt 中。你是如何做到的或者如何添加它?

最佳答案

将其放入您的 CMakeLists.txt 文件中(如果需要,请将任何选项从 OFF 更改为 ON):

set(Boost_USE_STATIC_LIBS OFF) 
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_STATIC_RUNTIME OFF)
find_package(Boost 1.45.0 COMPONENTS *boost libraries here*)

if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
add_executable(progname file1.cxx file2.cxx)
target_link_libraries(progname ${Boost_LIBRARIES})
endif()

显然,您需要将所需的库放在我放置*boost库的位置*。例如,如果您使用 filesystemregex 库,您需要编写:

find_package(Boost 1.45.0 COMPONENTS filesystem regex)

关于boost - 如何在 CMakeLists.txt 中添加 Boost 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6646405/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com