diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-03-12 14:55:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 14:55:47 (GMT) |
commit | 540edb0e3fad29cde825ca05d964d214b188ccbc (patch) | |
tree | 9592ea2d539adcef5569b3a9440bf8e163cbef70 /config | |
parent | 3b39164c28bc55391fe8b51b9aa094666637b5db (diff) | |
download | hdf5-540edb0e3fad29cde825ca05d964d214b188ccbc.zip hdf5-540edb0e3fad29cde825ca05d964d214b188ccbc.tar.gz hdf5-540edb0e3fad29cde825ca05d964d214b188ccbc.tar.bz2 |
1 10 Add -showconfig to h5cc scripts to dump libhdf5.settings file (#1483)
Diffstat (limited to 'config')
-rw-r--r-- | config/cmake/libh5cc.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/config/cmake/libh5cc.in b/config/cmake/libh5cc.in index ecdd13e..6d54088 100644 --- a/config/cmake/libh5cc.in +++ b/config/cmake/libh5cc.in @@ -27,6 +27,27 @@ prg=$dir/$(basename -- "$prg") || exit printf '%s\n' "$prg" printf 'dir is %s\n' "$dir" + +# Show the configuration summary of the library recorded in the +# libhdf5.settings file residing in the lib directory. +showconfigure() +{ + cat $dir/lib/libhdf5.settings + status=$? +} + export PKG_CONFIG_PATH=$dir/lib/pkgconfig -@_PKG_CONFIG_COMPILER@ $@ `pkg-config --define-variable=prefix=$dir --cflags --libs @_PKG_CONFIG_LIBNAME@` +for arg in $@ ; do + case "$arg" in + -showconfig) + showconfigure + exit $status + ;; + *) + @_PKG_CONFIG_COMPILER@ $@ `pkg-config --define-variable=prefix=$dir --cflags --libs @_PKG_CONFIG_LIBNAME@` + status=$? + exit $status + ;; + esac +done |