gpt4 book ai didi

linker - Cmake基本库链接问题

转载 作者:行者123 更新时间:2023-12-02 08:39:34 25 4
gpt4 key购买 nike

我在将库与 CMake 链接时遇到一个简单的问题(我不太了解 CMake)。我的配置如下:

project/src/CMakeLists.txt (with all .cpp and .h files)
project/support/linux/gmp/include/gmp.h
project/support/linux/gmp/include/gmpxx.h
project/support/linux/gmp/include/libgmp.a
project/support/linux/gmp/include/libgmpxx.a

如何在编译过程中包含gmp库? (我在 FIND_PACKAGE、INCLUDE_DIRECTORIES、TARGET_LINK_LIBRARIES、ADD_LIBRARY ... 命令之间迷失了方向)

非常感谢。

最佳答案

CMake 并不难理解。

第一步

使用find_package找到该库。

find_package(GMP REQUIRED)

第二步

使用include_directories包含库头文件。

include_directories(${GOBJECT_INCLUDE_DIR})

第三步

使用target_link_libraries将您的二进制文件链接到库。

add_executable(ExecutableName Main.cpp)
target_link_libraries(ExecutableName ${GOBJECT_LIBRARIES})

关于linker - Cmake基本库链接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6975718/

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