diff options
| author | harry <harry> | 2025-06-03 10:10:26 +0800 |
|---|---|---|
| committer | harry <harry> | 2025-06-03 10:10:26 +0800 |
| commit | b0abf262b86d9018c954b03dc2970e2191f53b06 (patch) | |
| tree | 57377fe7c3c46d5de992120e7f19cf67d10061dd /xmake/modules/package/manager/conan/v2/install_package.lua | |
| parent | eb618682cb9c9782285b2b552259473bd472e60a (diff) | |
rename configurations to conf in conan package manager
Diffstat (limited to 'xmake/modules/package/manager/conan/v2/install_package.lua')
| -rw-r--r-- | xmake/modules/package/manager/conan/v2/install_package.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/package/manager/conan/v2/install_package.lua b/xmake/modules/package/manager/conan/v2/install_package.lua index b424ee06f..f93ebaea7 100644 --- a/xmake/modules/package/manager/conan/v2/install_package.lua +++ b/xmake/modules/package/manager/conan/v2/install_package.lua @@ -334,13 +334,13 @@ function main(conan, name, opt) end -- set custom host configurations - for _, conf in ipairs(configs.configurations or configs.configurations_host) do + for _, conf in ipairs(configs.conf or configs.conf_host) do table.insert(argv, "-c") table.insert(argv, conf) end -- set custom build configurations - for _, conf in ipairs(configs.configurations_build) do + for _, conf in ipairs(configs.conf_build) do table.insert(argv, "-c:b") table.insert(argv, conf) end |
