Changeset a2b1159
- Timestamp:
- Dec 29, 2021, 5:52:03 PM (3 years ago)
- Branches:
- feature/crepe
- Children:
- 2117311
- Parents:
- 815a73c
- git-author:
- Paul Brossier <piem@piem.org> (12/27/21 04:07:02)
- git-committer:
- Paul Brossier <piem@piem.org> (12/29/21 17:52:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r815a73c ra2b1159 525 525 526 526 if (ctx.options.enable_hdf5 != False): 527 # try with pkg-config 527 528 ctx.check_cfg(package='hdf5', args='--cflags --libs', 529 uselib_store='HDF5', mandatory=False) 530 # also try directly 531 ctx.check(lib=['hdf5'], use = ['HDF5'], 528 532 uselib_store='HDF5', mandatory=ctx.options.enable_hdf5) 529 533 ctx.check(lib=['hdf5_hl'], use = ['HDF5'], 530 534 uselib_store='HDF5_HL', mandatory=ctx.options.enable_hdf5) 535 if 'LIB_HDF5_HL' in ctx.env and 'LIB_HDF5' in ctx.env: 536 ctx.define('HAVE_HDF5', 1) 531 537 532 538 # write configuration header
Note: See TracChangeset
for help on using the changeset viewer.