summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-03-29 23:38:48 +0800
committerruki <[email protected]>2019-03-29 15:52:49 +0800
commitd1fd493decde10f77e382467dd1e6b75464801ad (patch)
tree2fe36b0ac720de416386c20b5fa36cbfd5df8a40
parent2fc168ab1c37d86111412c2c9969a87ee611d40a (diff)
set missing as the default build type for conan
-rw-r--r--xmake/modules/package/manager/conan/install_package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/package/manager/conan/install_package.lua b/xmake/modules/package/manager/conan/install_package.lua
index 1a2907c7b..e469ad31f 100644
--- a/xmake/modules/package/manager/conan/install_package.lua
+++ b/xmake/modules/package/manager/conan/install_package.lua
@@ -90,7 +90,7 @@ end
function configurations()
return
{
- build = {description = "use it to choose if you want to build from sources.", default = "all", values = {"all", "never", "missing", "outdated"}},
+ 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. OpenSSL:shared=True"},
imports = {description = "Set the imports for conan."},