diff options
| author | ruki <[email protected]> | 2025-08-19 09:25:23 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-19 09:25:23 +0800 |
| commit | 37cea6d0b4b2efabe259ac27b20d5a2538c00342 (patch) | |
| tree | 7b0c5f450ebf59d4d8f2d92719e69031847fcd9e | |
| parent | 583378709fcb5831c0f09cec9c4e227246087b23 (diff) | |
| parent | d5e479c74ad857f4cd4763ad200ba77c55616e36 (diff) | |
Merge pull request #6725 from xmake-io/extrafiles
improve target:extrafiles
| -rw-r--r-- | xmake/core/project/target.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua index 78719105b..74bc438af 100644 --- a/xmake/core/project/target.lua +++ b/xmake/core/project/target.lua @@ -2196,7 +2196,8 @@ end -- get the extra files function _instance:extrafiles() - return (match_copyfiles(self, "extrafiles")) + local extrafiles, _, extrainfo = match_copyfiles(self, "extrafiles") + return extrafiles, extrainfo end -- get depend file from object file |
