summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
authorruki <[email protected]>2020-02-27 22:48:24 +0800
committerruki <[email protected]>2020-02-27 10:50:25 +0800
commit8516f21d34672ef38f30890c1da41846a7f3a4e8 (patch)
tree746ec3c526af85dbd97d0951e43604d766380002 /xmake/plugins
parentf26c0edb8b74cd48a27d833bc75a0cd0ecf6a0a1 (diff)
add xmake service plugin
Diffstat (limited to 'xmake/plugins')
-rw-r--r--xmake/plugins/service/main.lua28
-rw-r--r--xmake/plugins/service/xmake.lua44
2 files changed, 72 insertions, 0 deletions
diff --git a/xmake/plugins/service/main.lua b/xmake/plugins/service/main.lua
new file mode 100644
index 000000000..62b2564aa
--- /dev/null
+++ b/xmake/plugins/service/main.lua
@@ -0,0 +1,28 @@
+--!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-2020, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file main.lua
+--
+
+-- imports
+import("core.base.option")
+
+-- main
+function main()
+ cprint("${color.warning}Experimental, still in development!")
+end
+
diff --git a/xmake/plugins/service/xmake.lua b/xmake/plugins/service/xmake.lua
new file mode 100644
index 000000000..182fe7d0b
--- /dev/null
+++ b/xmake/plugins/service/xmake.lua
@@ -0,0 +1,44 @@
+--!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-2020, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file service.lua
+--
+
+-- define task
+task("service")
+
+ -- set category
+ set_category("plugin")
+
+ -- on run
+ on_run("main")
+
+ -- set menu
+ set_menu {
+ -- usage
+ usage = "xmake service [options]"
+
+ -- description
+ , description = "Start service for remote or distributed compilation and etc. ${color.warning}(Experimental, still in development)"
+
+ -- options
+ , options =
+ {
+ {'d', "daemon", "k", nil, "Run service as daemon." }
+ , {nil, "status", "k", nil, "Show service status if the daemon service has been started." }
+ }
+ }