diff options
| author | ruki <[email protected]> | 2016-06-15 22:35:53 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-06-15 22:35:53 +0800 |
| commit | 9582f9b59f5f0948c373ae5d6730328f10da1554 (patch) | |
| tree | 1e43f4f72ebec1a14097c5dc635a05165c351718 | |
| parent | 25950c4a2cf45ad17fe73d196ae6f309cde098d5 (diff) | |
modify mingw formats
| -rwxr-xr-x | xmake/platforms/mingw/xmake.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xmake/platforms/mingw/xmake.lua b/xmake/platforms/mingw/xmake.lua index 39276f8c7..10602eaf4 100755 --- a/xmake/platforms/mingw/xmake.lua +++ b/xmake/platforms/mingw/xmake.lua @@ -43,9 +43,10 @@ platform("mingw") -- init the file formats _g.formats = {} - _g.formats.static = {"lib", ".a"} - _g.formats.object = {"", ".o"} - _g.formats.shared = {"lib", ".so"} + _g.formats.static = {"", ".lib"} + _g.formats.object = {"", ".obj"} + _g.formats.shared = {"", ".dll"} + _g.formats.binary = {"", ".exe"} -- init the toolchains _g.tools = {} |
