We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8b9075 commit d7989a8Copy full SHA for d7989a8
setup.py
@@ -775,10 +775,11 @@ def get_snappy_clib(field=None):
775
def get_sperr_clib(field=None):
776
"""sperr static lib and sperr filter C++20 source file build config"""
777
sperr_dir = "src/SPERR"
778
+ h5z_sperr_dir = "src/H5Z-SPERR"
779
780
config = dict(
- sources=glob(f"{sperr_dir}/src/*.cpp") + [f"src/H5Z-SPERR/src/h5zsperr_helper.cpp"],
781
- include_dirs=[f"{sperr_dir}/include"],
+ sources=glob(f"{sperr_dir}/src/*.cpp") + [f"{h5z_sperr_dir}/src/h5zsperr_helper.cpp"],
782
+ include_dirs=[f"{sperr_dir}/include", f"{h5z_sperr_dir}/include"],
783
macros=[
784
("SPERR_VERSION_MAJOR", 0), # Check project(SPERR VERSION ... in src/SPERR/CMakeLists.txt
785
("USE_VANILLA_CONFIG", 1),
0 commit comments