aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 3de5ef4..9513d18 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2772,7 +2772,7 @@ class CustomTargetIndex(HoldableObject):
def is_linkable_target(self) -> bool:
suf = os.path.splitext(self.output)[-1]
- return suf in {'.a', '.dll', '.lib', '.so'}
+ return suf in {'.a', '.dll', '.lib', '.so', '.dylib'}
def links_dynamically(self) -> bool:
"""Whether this target links dynamically or statically