diff options
| author | ruki <[email protected]> | 2016-03-26 20:51:35 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-03-26 20:51:35 +0800 |
| commit | f599ffc2ca8f452b70e2fb928816c5b78302ee1b (patch) | |
| tree | 59cf1fa8ad1cc2a9013641fac59e42d52cabb64e /xmake/core/base/profiler.lua | |
| parent | 2d269f2eb8a61c7b4225a766ceedec4fd1858e95 (diff) | |
modify self interfaces
Diffstat (limited to 'xmake/core/base/profiler.lua')
| -rw-r--r-- | xmake/core/base/profiler.lua | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/xmake/core/base/profiler.lua b/xmake/core/base/profiler.lua new file mode 100644 index 000000000..b0f0b3cf8 --- /dev/null +++ b/xmake/core/base/profiler.lua @@ -0,0 +1,34 @@ +--!The Automatic Cross-platform Build Tool +-- +-- XMake is free software; you can redistribute it and/or modify +-- it under the terms of the GNU Lesser General Public License as published by +-- the Free Software Foundation; either version 2.1 of the License, or +-- (at your option) any later version. +-- +-- XMake is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU Lesser General Public License for more details. +-- +-- You should have received a copy of the GNU Lesser General Public License +-- along with XMake; +-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a> +-- +-- Copyright (C) 2015 - 2016, ruki All rights reserved. +-- +-- @author ruki +-- @file profiler.lua +-- + +-- define module +local profiler = profiler or {} + +-- load modules +local os = require("base/os") +local table = require("base/table") +local utils = require("base/utils") +local string = require("base/string") + + +-- return module +return profiler |
