是否可以从源文件访问 CMake 宏/定义?

发布于 2025-01-11 13:34:01 字数 234 浏览 0 评论 0原文

默认的 CMake 宏/定义是否暴露给正在构建的源文件?

例如,我可以从 main.cpp 访问 CMAKE_PROJECT_VERSION 吗?

我知道我可以通过使用 set()add_compile_definitions() 创建一个新宏来强制它们进入源文件,但我正在寻找一种更干净/更少冗余的方式实现这一点。

Are the default CMake macros/definitions exposed to the source files being build?

For instance, can I access CMAKE_PROJECT_VERSION from a main.cpp?

I understand I can just force them into the source files by creating a new macro with set() and add_compile_definitions(), but was looking for a cleaner / less redundant way of achieving this.

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

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

发布评论

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

评论(1

瞄了个咪的 2025-01-18 13:34:01

不可以。源文件无法访问 CMAKE_PROJECT_VERSION 等 CMake 变量。

No. CMake variables such as CMAKE_PROJECT_VERSION are not accessible to the source files.

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