From 63d193b080ce5edd25004e8ac76174a22d20adb5 Mon Sep 17 00:00:00 2001 From: kaoru Date: Tue, 3 Aug 2021 23:01:20 +0900 Subject: [PATCH] Include the setup.exe's into the library image #181 --- setup/installer/copy_libimage_files.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/installer/copy_libimage_files.py b/setup/installer/copy_libimage_files.py index 4f0168f6..b68dc145 100644 --- a/setup/installer/copy_libimage_files.py +++ b/setup/installer/copy_libimage_files.py @@ -43,7 +43,9 @@ def _list_files(source_path: pathlib.Path) -> List[Tuple[pathlib.Path, pathlib.P source_path = pathlib.Path(matched.group(4)) destination = pathlib.Path(matched.group(5)) if ( - feature != "include" + feature != "bin.Win32" + and feature != "bin.x64" + and feature != "include" and feature != "lib.Release.Win32" and feature != "lib.Release.x64" ):