我正在尝试conan
用于一个虚拟 C++ 项目(此处与语言无关),但我不喜欢弄乱用户的主目录。默认情况下,conan install
将使用~/conan/data
指定的~/conan/conan.conf
:
[storage]
# This is the default path, but you can write your own. It must be an absolute path or a
# path beginning with "~" (if the environment var CONAN_USER_HOME is specified, this directory, even
# with "~/", will be relative to the conan user home, not to the system user home)
path = ~/.conan/data
有没有办法将存储目录覆盖到本地目录?
我试图将一个[storage]
部分添加到我创建的配置文件中,但显然conan
不喜欢它(`ERROR: Error reading './locally' profile: ConfigParser: Unrecognized field 'storage')。