summaryrefslogtreecommitdiff
path: root/xmake/platforms
diff options
context:
space:
mode:
authorruki <[email protected]>2018-08-02 22:29:48 +0800
committerruki <[email protected]>2018-08-02 08:58:50 +0800
commit5aa5ddbdaa2c026d65fcb17e5e36ac4995032a8b (patch)
tree62d77789a06fc39d0d37820f7ca69077edcae27b /xmake/platforms
parenta52fce5abc67b0e7c3bdadf2d3debc1dbb48c84a (diff)
modify shared library name for mingw
Diffstat (limited to 'xmake/platforms')
-rw-r--r--xmake/platforms/mingw/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/platforms/mingw/xmake.lua b/xmake/platforms/mingw/xmake.lua
index 7a9db9120..7b1968da2 100644
--- a/xmake/platforms/mingw/xmake.lua
+++ b/xmake/platforms/mingw/xmake.lua
@@ -35,7 +35,7 @@ platform("mingw")
set_archs("i386", "x86_64")
-- set formats
- set_formats {static = {"lib", ".a"}, object = {"", ".o"}, shared = {"lib", ".so"}, binary = {"", ".exe"},symbol = {"", ".pdb"}}
+ set_formats {static = {"lib", ".a"}, object = {"", ".o"}, shared = {"", ".dll"}, binary = {"", ".exe"},symbol = {"", ".pdb"}}
-- on check
on_check("check")