From 06ce2b7bd9c3b8f31ec67870c927e87000761c3f Mon Sep 17 00:00:00 2001 From: Ailing Date: Fri, 13 Jan 2023 21:49:20 +0800 Subject: [PATCH] [mac] Add .dylib and .cmake to built wheel (#7156) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bcb778470c54a..ed363eaf6b1f9 100644 --- a/setup.py +++ b/setup.py @@ -162,7 +162,7 @@ def get_cmake_args(): def cmake_install_manifest_filter(manifest_files): return [ f for f in manifest_files - if f.endswith(('.so', 'pyd', '.dll', '.bc', '.h', + if f.endswith(('.so', 'pyd', '.dll', '.bc', '.h', '.dylib', '.cmake', '.hpp')) or os.path.basename(f) == 'libMoltenVK.dylib' ]