gpt4 book ai didi

cmake - CMake CMakeLists 文件中的 "CACHE STRING"是什么意思?

转载 作者:行者123 更新时间:2023-12-03 13:33:48 34 4
gpt4 key购买 nike

我在 CMakeLists 文件中找到了这句话,我在 google 上搜索了它,但找不到关于 CACHE STRING 这个词的相关资源。 .

set(CMAKE_BUILD_TYPE Debug CACHE STRING "set build type to debug") 

这是什么意思?恕我直言,这不是很难使用吗?

最佳答案

阅读 https://cmake.org/cmake/help/v3.0/command/set.html

Within CMake sets <variable> to the value <value>. <value> is expanded before <variable> is set to it. Normally, set will set a regular CMake variable. If CACHE is present, then the <variable> is put in the cache instead, unless it is already in the cache. See section ‘Variable types in CMake’ below for details of regular and cache variables and their interactions. If CACHE is used, <type> and <docstring> are required. <type> is used by the CMake GUI to choose a widget with which the user sets a value.


STRING是变量类型;这实际上只影响配置工具,当它们显示变量的编辑小部件时。

如果你想覆盖一个设置,你通常会使用它,用 FORCE ;否则你可能不会。

不是特别难懂。

注意。 CACHE之间的主要区别正常变量是 CACHE那些出现在 cmake 配置工具中作为您可以设置的设置(例如 cmake-gui、ccmake)。

关于cmake - CMake CMakeLists 文件中的 "CACHE STRING"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36097090/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com