我应该将 CMakeLists.txt 文件放在哪里?
我们想用 C 语言开发一些动态链接库,每个库都适用于 Linux 和 Windows。我们想使用 CMake。
我们如何组织目录以及将这些 CMakeLists.txt
文件放在哪里? (或者我们应该只有一个?)
We would like to develop a few dynamically-linked libraries in C, each for both Linux and Windows. We would like to use CMake.
How do we organize directories and where do we put those CMakeLists.txt
files? (Or should we have just one?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有一种必须完成的方法,但这里有一种可能的方法:
虽然您可以在顶级 CMakeLists.txt 文件中执行所有操作,但如果您的项目很复杂,它会很快变得庞大且混乱。
There is no single way that it must be done, but here is one possible way:
While you can do everything in the top-level CMakeLists.txt file, it will get large and messy very quickly if your project is complex.