summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-08-19 23:23:20 +0800
committerruki <[email protected]>2024-08-19 14:20:46 +0800
commitcbefe04267b1c7793d8d851dcbe25a7eb1edf73a (patch)
tree10f9ec1069f09c4f50f8b6604443f716d1717431
parentbf45ab42eeeeb61f22303d9bb2ceb15ef6e1b3e8 (diff)
fix soname
-rw-r--r--xmake/core/project/target.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua
index c8c6606fc..c84e6fbcb 100644
--- a/xmake/core/project/target.lua
+++ b/xmake/core/project/target.lua
@@ -976,7 +976,7 @@ function _instance:soname()
if not self:is_shared() then
return
end
- if not self:is_plat("macosx", "linux", "bsd", "cross") then
+ if self:is_plat("windows", "mingw", "cygwin", "msys") then
return
end
local version = self:get("version")