CMakeLists.txt加载第三方库

8 篇文章 0 订阅
本文展示了如何创建一个名为TgMath的C++静态库,包含了一个简单的加法函数,并在CMakeLists.txt中配置了库的加载路径和链接。在lesson001.cpp中,通过#include引入头文件并调用库函数进行加法运算。
摘要由CSDN通过智能技术生成

生成一个库文件

TgMath.h

#ifndef TGMATH_H
#define TGMATH_H

#include "tgmath_global.h"
class TGMATHSHARED_EXPORT TgMath
{
public:
    TgMath();

    static int add(const int a, const int b);
};

#endif // TGMATH_H

TgMath.cpp

#include "TgMath.h"

TgMath::TgMath()
{

}

int TgMath::add(const int a, const int b)
{
    return a + b;
}

在这里插入图片描述

加载库文件

CMakeLists.txt

project(lesson001)

# 使用Qt的模块
set(QT Core Widgets)
find_package(Qt5 COMPONENTS REQUIRED ${QT})

include_directories( /opt/TgMath/include )

link_directories( /opt/TgMath/lib )

add_executable(lesson001 lesson001.cpp)

target_link_libraries(lesson001 TgMath ${OpenCV_LIBS})

qt5_use_modules(lesson001 ${QT})

关键三行
include_directories: 指定库的头文件所在目录
link_directories: 指定库文件所在目录
target_link_libraries: 链接库文件

调用库

lesson001.cpp


#include <stdio.h>
#include <QDebug>
#include "TgMath.h"

int main(int argc, char *argv[])
{
    qDebug() << "application start";

    qDebug() << "TgMath::add(5, 8) " << TgMath::add(5, 8);

	return 0;
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值