diff options
| author | ruki <[email protected]> | 2022-10-17 23:58:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-10-17 23:58:30 +0800 |
| commit | d9595826e8f81ec19673adcce87e44931cf75c0f (patch) | |
| tree | 4818474213b18dfc6bee0f830254f1ce415b0ecb | |
| parent | 860b2c9d4100bd69927aa9e099e07e7c0bdd9638 (diff) | |
format code
| -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 af78ee398..e9f986c3a 100644 --- a/xmake/core/project/target.lua +++ b/xmake/core/project/target.lua @@ -1519,7 +1519,8 @@ end -- get object file from source file function _instance:objectfile(sourcefile) - return self:autogenfile(sourcefile, {rootdir = self:objectdir(), filename = target.filename(path.filename(sourcefile), "object", {plat = self:plat(), arch = self:arch()})}) + return self:autogenfile(sourcefile, {rootdir = self:objectdir(), + filename = target.filename(path.filename(sourcefile), "object", {plat = self:plat(), arch = self:arch()})}) end -- get the object files |
