summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2016-06-15 22:35:53 +0800
committerruki <[email protected]>2016-06-15 22:35:53 +0800
commit9582f9b59f5f0948c373ae5d6730328f10da1554 (patch)
tree1e43f4f72ebec1a14097c5dc635a05165c351718
parent25950c4a2cf45ad17fe73d196ae6f309cde098d5 (diff)
modify mingw formats
-rwxr-xr-xxmake/platforms/mingw/xmake.lua7
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 = {}