Fix library output directory for MSVC (#1681)

This commit is contained in:
Cheng
2024-12-10 12:07:50 +09:00
committed by GitHub
parent 29a620cab2
commit a59fae040f
3 changed files with 18 additions and 3 deletions

View File

@@ -67,7 +67,8 @@ class CMakeBuild(build_ext):
"-DMLX_BUILD_EXAMPLES=OFF",
f"-DMLX_PYTHON_BINDINGS_OUTPUT_DIRECTORY={extdir}{os.sep}",
]
build_args = []
# Some generators require explcitly passing config when building.
build_args = ["--config", cfg]
# Adding CMake arguments set as environment variable
# (needed e.g. to build for ARM OSx on conda-forge)
if "CMAKE_ARGS" in os.environ: