mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
14 lines
179 B
Bash
Executable File
14 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -f build
|
|
mkdir build
|
|
pushd build
|
|
cmake .. -DENABLE_NETCDF_4=OFF -DENABLE_DAP=OFF -DENABLE_DISKLESS=OFF
|
|
make -j 4
|
|
cd ncdump
|
|
./tst_nccopy3.sh
|
|
RES=$?
|
|
popd
|
|
|
|
exit $RES
|