CMake 中的第三方库
我在我的项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决方案是使用:
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 )
如果您的 /lib 包含自己的 CMakeLists.txt,只需使用 add_subdirectory 命令:
否则
您必须使用 exec_program 命令:
其中 script.sh
不要忘记
在我看来,第一个解决方案更好!
If your /lib contains its own CMakeLists.txt, just use the add_subdirectory command:
Else
you have to use exec_program command:
where script.sh is
do not forget
In my opinion, the first solution is better !!!