diff options
| author | ruki <[email protected]> | 2022-07-23 00:28:49 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-07-23 00:28:49 +0800 |
| commit | 9fce77f97024a1c76fd60d41bc52fc3c3ceb329a (patch) | |
| tree | 20173f3e644b44252fd4f4b793caeddbcf06b1bd /xmake/plugins/watch/main.lua | |
| parent | 67a7d807940ff5ebdda3a5054265422f31fca6a8 (diff) | |
add watch plugin stub
Diffstat (limited to 'xmake/plugins/watch/main.lua')
| -rw-r--r-- | xmake/plugins/watch/main.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/xmake/plugins/watch/main.lua b/xmake/plugins/watch/main.lua new file mode 100644 index 000000000..9e297a02a --- /dev/null +++ b/xmake/plugins/watch/main.lua @@ -0,0 +1,27 @@ +--!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-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file main.lua +-- + +-- imports +import("core.base.option") +import("core.base.fwatcher") + +function main() + +end |
