You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
17 lines
318 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ -z "$1" ]
|
||
|
then
|
||
|
printf "Usage: setup.sh install_directory [dependencies].\n"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
# $2 netcdf-c hdf5
|
||
|
cd $(dirname $0)
|
||
|
libname=$(basename $(pwd))
|
||
|
mkdir build
|
||
|
cd build
|
||
|
STATIC=YES FORTRAN=NO MPI=NO INSTALL_PATH="$1" NETCDF_PATH="$2" HDF5_PATH="$3" ../cmake-exodus
|
||
|
make -j8
|
||
|
make install
|