Skip to content

Commit

Permalink
fVDB CI fixing consistent cmake install libdir for blosc build
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Swartz <[email protected]>
  • Loading branch information
swahtz committed Sep 3, 2024
1 parent c261eb7 commit 9ccf835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fvdb/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def build_cmake_project(base_path, cmake_args):
os.makedirs(cmake_build_dir, exist_ok=True)
os.makedirs(cmake_install_dir, exist_ok=True)
subprocess.check_call(
["cmake", base_path, f"-DCMAKE_INSTALL_PREFIX={cmake_install_dir}"] + cmake_args, cwd=cmake_build_dir
["cmake", base_path, f"-DCMAKE_INSTALL_PREFIX={cmake_install_dir}", "-DCMAKE_INSTALL_LIBDIR=lib"] + cmake_args, cwd=cmake_build_dir
)
subprocess.check_call(["cmake", "--build", ".", "--target", "install"], cwd=cmake_build_dir)
return cmake_install_dir
Expand Down

0 comments on commit 9ccf835

Please sign in to comment.