forked from i-RIC/iricdev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate-dirExt-prop.sh
executable file
·30 lines (30 loc) · 1.7 KB
/
create-dirExt-prop.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
topdir=$(pwd)
. ./versions.sh
echo "[release]"
echo "cgnslib = ${topdir}/lib/install/cgnslib-${CGNSLIB_VER}/release/bin/"
echo "gdal = ${topdir}/lib/install/gdal-${GDAL_VER}/release/bin/"
echo "geos = ${topdir}/lib/install/geos-${GEOS_VER}/release/bin/"
echo "hdf5 = ${topdir}/lib/install/hdf5-${HDF5_VER}/release/bin/"
echo "netcdf = ${topdir}/lib/install/netcdf-${NETCDF_VER}/release/bin/"
echo "proj = ${topdir}/lib/install/proj-${PROJ_VER}/release/bin/"
echo "qwt = ${topdir}/lib/install/Qwt-${QWT_VER}/lib/"
echo "shapelib = ${topdir}/lib/install/shapelib-${SHAPELIB_VER}"
echo "szip = ${topdir}/lib/install/hdf5-${HDF5_VER}/release/bin/"
echo "vtk = ${topdir}/lib/install/VTK-${VTK_VER}/release/bin/"
echo "yaml-cpp = ${topdir}/lib/install/yaml-cpp-${YAML_CPP_VER}/release/bin"
echo "zlib = ${topdir}/lib/install/hdf5-${HDF5_VER}/release/bin/"
echo ""
echo "[debug]"
echo "cgnslib = ${topdir}/lib/install/cgnslib-${CGNSLIB_VER}/debug/bin/"
echo "gdal = ${topdir}/lib/install/gdal-${GDAL_VER}/debug/bin/"
echo "geos = ${topdir}/lib/install/geos-${GEOS_VER}/debug/bin/"
echo "hdf5 = ${topdir}/lib/install/hdf5-${HDF5_VER}/debug/bin/"
echo "netcdf = ${topdir}/lib/install/netcdf-${NETCDF_VER}/debug/bin/"
echo "proj = ${topdir}/lib/install/proj-${PROJ_VER}/release/bin/"
echo "qwt = ${topdir}/lib/install/Qwt-${QWT_VER}/lib/"
echo "shapelib = ${topdir}/lib/install/shapelib-${SHAPELIB_VER}"
echo "szip = ${topdir}/lib/install/hdf5-${HDF5_VER}/debug/bin/"
echo "vtk = ${topdir}/lib/install/VTK-${VTK_VER}/debug/bin/"
echo "yaml-cpp = ${topdir}/lib/install/yaml-cpp-${YAML_CPP_VER}/debug/bin"
echo "zlib = ${topdir}/lib/install/hdf5-${HDF5_VER}/debug/bin/"