diff options
| author | ruki <[email protected]> | 2023-09-28 23:16:40 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-28 23:16:40 +0800 |
| commit | 3ec7f305a86cb2420f51c73ffbb526270b3c7160 (patch) | |
| tree | e01960209420718eb0f1b7af0feabf63f92069c1 | |
| parent | 26d820178598a406749a31592cc8f26910327c5a (diff) | |
add graph module
| -rw-r--r-- | xmake/core/base/graph.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/xmake/core/base/graph.lua b/xmake/core/base/graph.lua new file mode 100644 index 000000000..54960e82d --- /dev/null +++ b/xmake/core/base/graph.lua @@ -0,0 +1,26 @@ +--!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 graph.lua +-- + +-- define module: graph +local graph = graph or {} + +-- return module: graph +return graph + |
