如何为基于 CMake 的项目指定构建选项?
我不明白如何使用 CMake 配置项目和处理命令行选项。 我需要设置第 3 方库的目录变量(例如 Poco 和 GTest)。 通常,我只是运行 ./configure 并添加必要的参数。例如:
./configure --poco-inc=~/libs/poco/include --poco-lib=~/libs/poco/lib --gtest-inc=~/libs/gtest/include --gtest-lib=~/libs/gtest/lib
但是如何将等效信息传递给 CMake ?如何指定选项并在 cmake 文件中使用“set”或“property”处理它?
I don't understand how to configure project and handling command line options using CMake.
I need to set variables of directories of 3rd party library (for example Poco and GTest).
Usual, i just run ./configure with necessary parameters. For example:
./configure --poco-inc=~/libs/poco/include --poco-lib=~/libs/poco/lib --gtest-inc=~/libs/gtest/include --gtest-lib=~/libs/gtest/lib
But how do I pass the equivalent information to CMake ? How to specify options and handling it with 'set' or 'property' in cmake file ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此外,您可以使用 OPTION 命令
另请参阅
http://cmake。 org/cmake/help/v2.8.10/cmake.html#command:option
这些选项由 cmake 命令行参数定义。
您还可以使用它
来显示选项及其帮助消息。
Additionally, you can use OPTION command
See also
http://cmake.org/cmake/help/v2.8.10/cmake.html#command:option
The options are defined by cmake command line arguments
You can also use
to display the options and their help messages.