Removed hdf5_cpp dependency from setup

Optimized the build process by removing the unnecessary 'hdf5_cpp'
library from the extension module configuration. This change simplifies
linkage and can potentially reduce compile-time and binary size.
This commit is contained in:
Kumi 2024-02-09 15:21:10 +01:00
parent a137c3b914
commit 507c7538c6
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -29,7 +29,7 @@ ext_modules = [
'limedriver.binding',
sources=['src/limedriver/limedriver.pyx', 'extern/limedriver/src/limedriver.cpp'],
include_dirs=["extern/limedriver/src/", "/usr/include/hdf5/serial/"], # TODO: This is REALLY ugly.
libraries=["LimeSuite", "hdf5_cpp"],
libraries=["LimeSuite"],
language="c++",
),
]