向 CMake 添加命令行选项
我正在使用 CMake 构建一个大型库,我希望用户能够有选择地启用/禁用构建过程的某些部分。
如何将命令行选项添加到我的 CMake 构建中,例如,以便用户可以输入类似 cmake --build-partone --nobuild-parttwo --dothis=true --dothat=false .. 的内容>?
显然 OPTION 关键字将创建可以从 CMake GUI 设置的变量,但我不知道如何从命令行执行此操作。
I'm building a large library using CMake, and I would like users to be able to selectively enable/disable certain parts of my build process.
How can I add command-line options to my CMake build, e.g. so that users may type something like cmake --build-partone --nobuild-parttwo --dothis=true --dothat=false ..
?
Apparently the OPTION keyword will create variables that can be set from the CMake GUI, but I can't figure out how to do this from the command line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您应该使用
option
命令。您可以通过以下方式从命令行设置选项:请注意,
-DMyOption
必须位于路径之前。Yeah, you should use the
option
command. You can set options from the command line this way:Note that
-DMyOption
must come before the path.只是一点更正:
如果您还有其他变量要传递,建议指出这些变量的类型:
Just a little correction:
If you have other variables to pass, it is recommended to indicate the type of these: