summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-06-26 23:14:43 +0800
committerruki <[email protected]>2019-06-26 13:28:24 +0800
commitf79658de4de5b696091cc68d4f4bbb15f243f0ce (patch)
treec218f494508d128931a3756e8645a5ebb8d5a82c
parent7e448975bfbc011425c78d24284a4159e36ec4b8 (diff)
remove hello plugin
-rw-r--r--xmake/plugins/hello/xmake.lua45
1 files changed, 0 insertions, 45 deletions
diff --git a/xmake/plugins/hello/xmake.lua b/xmake/plugins/hello/xmake.lua
deleted file mode 100644
index fe39f7d50..000000000
--- a/xmake/plugins/hello/xmake.lua
+++ /dev/null
@@ -1,45 +0,0 @@
---!A cross-platform build utility based on Lua
---
--- Licensed under the Apache License, Version 2.0 (the "License");
--- you may not use this file except in compliance with the License.
--- You may obtain a copy of the License at
---
--- http://www.apache.org/licenses/LICENSE-2.0
---
--- Unless required by applicable law or agreed to in writing, software
--- distributed under the License is distributed on an "AS IS" BASIS,
--- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
--- See the License for the specific language governing permissions and
--- limitations under the License.
---
--- Copyright (C) 2015 - 2019, TBOOX Open Source Group.
---
--- @author ruki
--- @file hello.lua
---
-
--- define task
-task("hello")
-
- -- set category
- set_category("plugin")
-
- -- on run
- on_run(function ()
-
- -- trace
- print("hello xmake!")
-
- end)
-
- -- set menu
- set_menu {
- -- usage
- usage = "xmake hello [options]"
-
- -- description
- , description = "Hello xmake!"
-
- -- options
- , options = {}
- }