mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
a2e0f069ec
Primary change is to cleanup code and remove duplicated code. 1. Unify the rc file reading into libdispatch/drc.c. Eventually extend if we need rc file for netcdf itself as opposed to the dap code. 2. Unify the extraction from the rc file of DAP authorization info. 3. Misc. other small unifications: make temp file, read file. 4. Avoid use of libcurl when reading file:// because there is some kind of problem with the Visual Studio version. Might be related to the winpath problem. In any case, do direct read instead. 5. Add new error code NC_ERCFILE for errors in reading RC file. 6. Complete documentation cleanup as indicated in this comment https://github.com/Unidata/netcdf-c/pull/472#issuecomment-325926426 7. Convert some occurrences of #ifdef _WIN32 to #ifdef _MSC_VER
65 lines
1.1 KiB
CMake
65 lines
1.1 KiB
CMake
# Visual Studio
|
|
VS=1
|
|
|
|
if test "x$1" = xsetup ; then
|
|
VSSETUP=1
|
|
fi
|
|
|
|
#export NCPATHDEBUG=1
|
|
|
|
if test "x$VSSETUP" = x1 ; then
|
|
CFG="Debug"
|
|
else
|
|
CFG="Release"
|
|
fi
|
|
|
|
# Is netcdf-4 and/or DAP enabled?
|
|
NC4=1
|
|
DAP=1
|
|
|
|
if test "x$VS" != x ; then
|
|
FLAGS="-DCMAKE_PREFIX_PATH=c:/tools/nccmake"
|
|
else
|
|
FLAGS="$FLAGS -DCMAKE_INSTALL_PREFIX=`pwd`/ignore"
|
|
fi
|
|
|
|
if test "x$DAP" = x ; then
|
|
FLAGS="$FLAGS -DENABLE_DAP=false"
|
|
else
|
|
FLAGS="$FLAGS -DENABLE_DAP=true"
|
|
fi
|
|
if test "x$NC4" = x ; then
|
|
FLAGS="$FLAGS -DENABLE_NETCDF_4=false"
|
|
fi
|
|
FLAGS="$FLAGS -DENABLE_CONVERSION_WARNINGS=false"
|
|
FLAGS="$FLAGS -DENABLE_DAP_REMOTE_TESTS=true"
|
|
FLAGS="$FLAGS -DENABLE_TESTS=true"
|
|
FLAGS="$FLAGS -DENABLE_EXAMPLES=false"
|
|
#FLAGS="$FLAGS -DENABLE_HDF4=true"
|
|
FLAGS="$FLAGS -DENABLE_DYNAMIC_LOADING=false"
|
|
|
|
rm -fr build
|
|
mkdir build
|
|
cd build
|
|
|
|
NCLIB=`pwd`
|
|
|
|
if test "x$VS" != x ; then
|
|
# Visual Studio
|
|
NCLIB="${NCLIB}/build/liblib/$CFG"
|
|
export PATH="${NCLIB}:${PATH}"
|
|
cmake $FLAGS ..
|
|
if test "x$VSSETUP" = x ; then
|
|
cmake --build . --config ${CFG}
|
|
cmake --build . --config ${CFG} --target RUN_TESTS
|
|
fi
|
|
else
|
|
# GCC
|
|
NCLIB="${NCLIB}/build/liblib"
|
|
G="-GUnix Makefiles"
|
|
cmake "${G}" $FLAGS ..
|
|
make all
|
|
make test
|
|
fi
|
|
exit
|