From f8e22a342e69447149e2f22208911fa574f9d80b Mon Sep 17 00:00:00 2001 From: burgholzer Date: Wed, 9 Oct 2024 11:38:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20use=20separate=20build=20dirs=20?= =?UTF-8?q?per=20Python=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rely on build caching via ccache instead for build time performance Signed-off-by: burgholzer --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 336165d..f976264 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,7 @@ wheel.install-dir = "mqt/qudits" ninja.version = ">=1.10" # Setuptools-style build caching in a local directory -build-dir = "build/{build_type}" +build-dir = "build/{wheel_tag}/{build_type}" # Explicitly set the package directory wheel.packages = ["src/mqt"] @@ -297,7 +297,7 @@ environment = { MACOSX_DEPLOYMENT_TARGET = "10.15" } [tool.cibuildwheel.windows] before-build = "pip install delvewheel>=1.7.3" repair-wheel-command = "delvewheel repair -v -w {dest_dir} {wheel} --namespace-pkg mqt" -environment = { CMAKE_ARGS = "-T ClangCL", SKBUILD_CMAKE_ARGS="--fresh" } +environment = { CMAKE_ARGS = "-T ClangCL" } [[tool.cibuildwheel.overrides]] select = "*-macosx_arm64"