summaryrefslogtreecommitdiff
path: root/xmake/modules/package/manager/conan/configurations.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules/package/manager/conan/configurations.lua')
-rw-r--r--xmake/modules/package/manager/conan/configurations.lua19
1 files changed, 11 insertions, 8 deletions
diff --git a/xmake/modules/package/manager/conan/configurations.lua b/xmake/modules/package/manager/conan/configurations.lua
index 7b900b983..01cc8b34c 100644
--- a/xmake/modules/package/manager/conan/configurations.lua
+++ b/xmake/modules/package/manager/conan/configurations.lua
@@ -22,14 +22,17 @@
function main()
return
{
- build = {description = "Use it to choose if you want to build from sources.", default = "missing", values = {"all", "never", "missing", "outdated"}},
- remote = {description = "Set the conan remote server."},
- options = {description = "Set the options values, e.g. shared=True"},
- settings = {description = "Set the host settings for conan."},
- settings_host = {description = "Set the host settings for conan."},
- settings_build = {description = "Set the build settings for conan."},
- imports = {description = "Set the imports for conan 1.x, it has been deprecated in conan 2.x."},
- build_requires = {description = "Set the build requires for conan."}
+ build = {description = "Use it to choose if you want to build from sources.", default = "missing", values = {"all", "never", "missing", "outdated"}},
+ remote = {description = "Set the conan remote server."},
+ options = {description = "Set the options values, e.g. shared=True"},
+ settings = {description = "Set the host settings for conan."},
+ settings_host = {description = "Set the host settings for conan."},
+ settings_build = {description = "Set the build settings for conan."},
+ imports = {description = "Set the imports for conan 1.x, it has been deprecated in conan 2.x."},
+ build_requires = {description = "Set the build requires for conan."},
+ conf = {description = "Set the host configurations for conan, e.g. tools.microsoft.bash:subsystem=msys2"},
+ conf_host = {description = "Set the host configurations for conan, e.g. tools.microsoft.bash:subsystem=msys2"},
+ conf_build = {description = "Set the build configurations for conan, e.g. tools.microsoft.bash:subsystem=msys2"},
}
end