diff options
| author | ruki <[email protected]> | 2024-08-19 23:23:20 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-08-19 14:20:46 +0800 |
| commit | cbefe04267b1c7793d8d851dcbe25a7eb1edf73a (patch) | |
| tree | 10f9ec1069f09c4f50f8b6604443f716d1717431 | |
| parent | bf45ab42eeeeb61f22303d9bb2ceb15ef6e1b3e8 (diff) | |
fix soname
| -rw-r--r-- | xmake/core/project/target.lua | 2 |
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") |
