diff options
Diffstat (limited to 'xmake/actions/require/main.lua')
| -rw-r--r-- | xmake/actions/require/main.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/xmake/actions/require/main.lua b/xmake/actions/require/main.lua index 88cec846b..80e8b2a03 100644 --- a/xmake/actions/require/main.lua +++ b/xmake/actions/require/main.lua @@ -35,6 +35,7 @@ import("private.action.require.import", {alias = "import_packages"}) import("private.action.require.install") import("private.action.require.uninstall") import("private.action.require.download") +import("private.action.require.check") import("private.service.remote_build.action", {alias = "remote_build_action"}) -- @@ -110,7 +111,7 @@ function main() info(option.get("requires")) - -- fetch the library info of the given package + -- fetch the library info of the given packages elseif option.get("fetch") then fetch(option.get("requires")) @@ -120,6 +121,11 @@ function main() download(option.get("requires")) + -- check the given packages + elseif option.get("check") then + + check(option.get("requires")) + -- list all package dependencies in project elseif option.get("list") then |
