Ubuntu22.04中使用CMake配置运行boost库示例程序

Ubuntu22.04中使用CMake配置运行boost库示例程序

boost是一个比较强大的C++准标准库,里面有很多值得学习的东西,比较asio网络库可以用来编写C++ TCP客户端或者TCP服务端接收程序。本文主要讲解如何在Ubuntu22.04中使用Cmake配置boost库,以及运行boost示例程序。

Ubuntu22.04上安装boost库

参考在Ubuntu上安装Boost的五种方法(全网最全,建议收藏)中使用apt-get安装libboost-all-dev包的方式安装boost库,目前最新稳定版本是1.74.0

shell 复制代码
sudo apt-get update
sudo apt-get install libboost-all-dev

对应的boost安装目录为:/usrinclude头文件所在目录为:/usr/includeso库文件安装目录为:/usr/lib/x86_64-linux-gnu

编写boost示例程序

boost示例程序BoostExample_array_003.cpp如下:

cpp 复制代码
#include <iostream>
#include <boost/array.hpp>

using namespace std;

int main()
{
    boost::array<int, 4> arr = {{1, 2, 3, 4}};
    std::cout << "hi " << arr[0] << std::endl;

    return 0;
}

编写CMakeLists.txt文件

在上述BoostExample_array_003.cpp示例源代码同级目录下新建一个CMakeLists.txt文件

首选我们需要安装cmake,至于如何在ubuntu22.04安装cmake,直接使用sudo apt-get install cmake即可,当然也可以下载cmake源代码安装。

CMakeLists.txt 复制代码
project(BoostExamples)
cmake_minimum_required(VERSION 3.7)
# 设置C++标准
set(CMAKE_CXX_STANDARD 14)

# 首选的Boost安装路径
set(BOOST_ROOT /usr)
# 首选的头文件搜索路径 e.g. <prefix>/include
set(BOOST_INCLUDEDIR /usr/include)
# 首选的库文件搜索路径 e.g. <prefix>/lib
set(BOOST_LIBRARYDIR /usr/lib/x86_64-linux-gnu)
# 默认是OFF. 如果开启了,则不会搜索用户指定路径之外的路径
set(BOOST_NO_SYSTEM_PATHS ON)

find_package(Boost COMPONENTS regex system REQUIRED)

if (Boost_FOUND)
    include_directories(${Boost_INCLUDE_DIRS})

    MESSAGE( STATUS "Boost_INCLUDE_DIRS = ${Boost_INCLUDE_DIRS}.")
    MESSAGE( STATUS "$Boost_LIBRARIES = ${Boost_LIBRARIES}.")
    MESSAGE( STATUS "Boost_LIB_VERSION = ${Boost_LIB_VERSION}.")
  
    add_executable(BoostExample_array_003 BoostExample_array_003.cpp)
    target_link_libraries(BoostExample_array_003 ${Boost_LIBRARIES})
endif()

关于在linux下使用cmake配置boost库,可以参考FindBoostCMake中引用Boost库

运行程序

cd到BoostExample_array_003.cpp源代码和CMakeLists.txt同级目录,执行'mkdir build创建一个build`目录用于cmake编译源代码,这样的话就不会污染源代码目录了,

cd ~/workspace/CppProjects/BoostExamples
mkdir build
cmake ..
make

这样就生成了BoostExample_array_003可执行程序,

在命令行终端terminal中执行./BoostExample_array_003,运行结果如下:

参考资料

相关推荐
PyAIGCMaster1 小时前
ubuntu装P104驱动
linux·运维·ubuntu
奈何不吃鱼1 小时前
【Linux】ubuntu依赖安装的各种问题汇总
linux·运维·服务器
icy、泡芙1 小时前
T527-----音频调试
linux·驱动开发·音视频
aherhuo1 小时前
kubevirt网络
linux·云原生·容器·kubernetes
CYBEREXP20081 小时前
MacOS M3源代码编译Qt6.8.1
c++·qt·macos
zzzhpzhpzzz1 小时前
Ubuntu如何查看硬件型号
linux·运维·ubuntu
蜜獾云1 小时前
linux firewalld 命令详解
linux·运维·服务器·网络·windows·网络安全·firewalld
yuanbenshidiaos1 小时前
c++------------------函数
开发语言·c++
yuanbenshidiaos1 小时前
C++----------函数的调用机制
java·c++·算法
o(╥﹏╥)2 小时前
linux(ubuntu )卡死怎么强制重启
linux·数据库·ubuntu·系统安全