CMake 中的第三方库

发布于 2024-08-06 04:17:27 字数 103 浏览 2 评论 0原文

我在我的项目中使用 cmake,但我在子目录(例如 lib/ )中有另一个库,它使用普通的 Makefile。如何指示 CMake 在 lib 中运行 Makefile 作为构建过程的一部分?

I am using cmake for my project, but I have another library in a subdirectory ( say lib/ ) which uses a plain Makefile. How do I instruct CMake to run the Makefile in lib as part of the build process?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

み青杉依旧 2024-08-13 04:17:27

解决方案是使用:


execute_process ( 命令 make WORKING_DIRECTORY ${project_SOURCE_DIR}/path/to/lib )

The solution is to use:


execute_process ( COMMAND make WORKING_DIRECTORY ${project_SOURCE_DIR}/path/to/lib )

眼前雾蒙蒙 2024-08-13 04:17:27

如果您的 /lib 包含自己的 CMakeLists.txt,只需使用 add_subdirectory 命令:

add_subdirectory(/path/of/your/lib/that/contains/CMakeLists.txt)

否则

您必须使用 exec_program 命令:

exec_program(script.sh)

其中 script.sh

#!/bin/sh
cd /path/of/your/lib/ && make

不要忘记

chmod +x script.sh

在我看来,第一个解决方案更好!

If your /lib contains its own CMakeLists.txt, just use the add_subdirectory command:

add_subdirectory(/path/of/your/lib/that/contains/CMakeLists.txt)

Else

you have to use exec_program command:

exec_program(script.sh)

where script.sh is

#!/bin/sh
cd /path/of/your/lib/ && make

do not forget

chmod +x script.sh

In my opinion, the first solution is better !!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文