diff options
| -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 |
