如何为基于 CMake 的项目指定构建选项?

发布于 2024-11-25 11:24:21 字数 331 浏览 1 评论 0原文

我不明白如何使用 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 技术交流群。

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

发布评论

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

评论(1

捎一片雪花 2024-12-02 11:24:21

此外,您可以使用 OPTION 命令

option(<option_variable> "help string describing option" [initial value])

另请参阅

http://cmake。 org/cmake/help/v2.8.10/cmake.html#command:option

这些选项由 cmake 命令行参数定义。

-D<variable-name>=<value>

您还可以使用它

cmake -LH

来显示选项及其帮助消息。

Additionally, you can use OPTION command

option(<option_variable> "help string describing option" [initial value])

See also

http://cmake.org/cmake/help/v2.8.10/cmake.html#command:option

The options are defined by cmake command line arguments

-D<variable-name>=<value>

You can also use

cmake -LH

to display the options and their help messages.

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