diff options
| author | ruki <[email protected]> | 2017-05-16 11:17:39 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-05-16 11:17:46 +0800 |
| commit | a7c6ffab557760c2c2adf69e4f646c678f4e3034 (patch) | |
| tree | 6a6fff0cda763851d9afc55abd72c60dccaa1d9c /xmake/modules/lib | |
| parent | 76845e083b940445042896a87ebb482edcac8a36 (diff) | |
add find file and path stub modules
Diffstat (limited to 'xmake/modules/lib')
| -rw-r--r-- | xmake/modules/lib/detect/find_ccache.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/xmake/modules/lib/detect/find_ccache.lua b/xmake/modules/lib/detect/find_ccache.lua index 09364a5e5..66338da2a 100644 --- a/xmake/modules/lib/detect/find_ccache.lua +++ b/xmake/modules/lib/detect/find_ccache.lua @@ -22,12 +22,18 @@ -- @file find_ccache.lua -- +-- imports +import("lib.detect.find_file") + -- find ccache -- --- @param ... detected dirs or files +-- @param ... detected dirs, files, regs -- --- @return shellname, fullpath +-- @return {shellname = ... , fullpath = ...} or nil -- function main(...) + + -- TODO print("ccache") + find_file() end |
