From 892db7efad53a7f4c5e52147834da18956e86c78 Mon Sep 17 00:00:00 2001 From: John Demme Date: Mon, 15 Jul 2024 17:09:51 +0200 Subject: [PATCH] [PyCDE] Run delvewheel on Windows wheels Should fix missing DLL issues. --- frontends/PyCDE/src/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontends/PyCDE/src/CMakeLists.txt b/frontends/PyCDE/src/CMakeLists.txt index ae908567045a..a3a87a27bf45 100644 --- a/frontends/PyCDE/src/CMakeLists.txt +++ b/frontends/PyCDE/src/CMakeLists.txt @@ -107,3 +107,9 @@ install(IMPORTED_RUNTIME_ARTIFACTS PyCDE_CIRCTPythonCAPI DESTINATION python_packages/pycde/circt/_mlir_libs COMPONENT PyCDE ) +install(RUNTIME_DEPENDENCY_SET PyCDE_RUNTIME_DEPS + DESTINATION python_packages/pycde/circt/_mlir_libs + PRE_EXCLUDE_REGEXES .* + PRE_INCLUDE_REGEXES zlib1 + COMPONENT PyCDE +)