diff options
| author | ruki <[email protected]> | 2018-12-20 22:45:48 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-12-20 10:34:48 +0800 |
| commit | a9f3eac5faf29e1a60b68ec2ac7ec791ef7549ee (patch) | |
| tree | 5f1b52aeeb8b0773a4508625485411fc5b619ae9 /xmake/platforms/mingw | |
| parent | c68cf15bf9716576076507643a45bf1adc48f0ea (diff) | |
fix mingw static link
Diffstat (limited to 'xmake/platforms/mingw')
| -rw-r--r-- | xmake/platforms/mingw/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/platforms/mingw/xmake.lua b/xmake/platforms/mingw/xmake.lua index e1cd53207..e7469750f 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$(name).a", object = "$(name).o", shared = "$(name).dll", binary = "$(name).exe", symbol = "$(name).pdb"} + set_formats {static = "$(name).lib", object = "$(name).obj", shared = "$(name).dll", binary = "$(name).exe", symbol = "$(name).pdb"} -- on check on_check("check") |
