From a0af47764f6f93b49064ee382ca4999c24bde653 Mon Sep 17 00:00:00 2001 From: Zach Lewis Date: Mon, 30 Sep 2024 12:00:39 -0400 Subject: [PATCH] fix(wheels): macOS: build _all_ deps locally Signed-off-by: Zach Lewis --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 06169d1a9a..eb92661804 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -143,7 +143,7 @@ SKBUILD_CMAKE_BUILD_TYPE = "MinSizeRel" [tool.cibuildwheel.linux.environment] SKBUILD_BUILD_DIR = "/tmp/build_oiio_wheels" -SKBUILD_CMAKE_ARGS = "-DOpenImageIO_BUILD_LOCAL_DEPS=TIFF; -DOpenImageIO_BUILD_MISSING_DEPS=all" +SKBUILD_CMAKE_ARGS = "-DOpenImageIO_BUILD_LOCAL_DEPS=all; -DOpenImageIO_BUILD_MISSING_DEPS=all" # Suppress warnings that cause linux cibuildwheel build to fail CXXFLAGS = "-Wno-error=stringop-overflow -Wno-pragmas" SKBUILD_CMAKE_BUILD_TYPE = "MinSizeRel"