gpt4 book ai didi

c++ - 在构建过程中构建第三方库

转载 作者:太空宇宙 更新时间:2023-11-04 13:10:09 24 4
gpt4 key购买 nike

我有一个具有以下结构的项目

+--foo/
|
+-- CMakeLists.txt
+-- src/
+-- include/
+-- third-party/
|
+-- thing.tar.gz

构建过程的一个步骤是膨胀和解压 thing.tar.gz,使用 CMake 构建它,一旦准备就绪,继续编译和链接 src< 下的任何内容(我的实际项目)。

我希望所有这些都在源代码之外,在build 目录中完成。最终我希望我的构建过程如下:

$ cd /path/to/where/I/want/to/build/
$ cmake /path/to/directory/containing/CMakeFiles.txt/
$ make
# make inflates, untars, and builds thing.tar.gz
$ ls
# lists all the CMake stuff and the following folders:
# bin/ -> with all my application AND thing.tar.gz executables
# lib/ -> with all my libraries AND thing.tar.gz libraries
# include/ -> with all my headers AND thing.tar.gz headers

对于我的生活,我找不到简单的解决方案!到目前为止,我能够依靠 EXECUTE_PROCESS 提取到构建树中的文件夹,但我无法在生成的库上调用 CMake,也无法通知我的项目的其余部分嘿,我提取并构建了你的依赖项 [here] 和 [there];您现在可以继续构建

你会如何解决这个问题?

最佳答案

使用 -DCMAKE_PREFIX_PATH= 将 cmake 指向在您自己项目的 cmake 调用期间安装依赖项构建工件的位置。

关于c++ - 在构建过程中构建第三方库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40314221/

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