From 0fc1e99269961a633b820958418cad8bae66c5f2 Mon Sep 17 00:00:00 2001 From: Dennis Heimbigner Date: Thu, 28 Feb 2013 19:16:10 +0000 Subject: [PATCH] Forgot to check-in ncgen/nc_iter.c --- INSTALL | 4 ++++ ncgen/{nciter.c => nc_iter.c} | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) rename ncgen/{nciter.c => nc_iter.c} (99%) diff --git a/INSTALL b/INSTALL index 51f26e275..bc3f229d3 100644 --- a/INSTALL +++ b/INSTALL @@ -248,3 +248,7 @@ For example, this works for linking an application named myapp.c with netCDF-4 libraries: cc -o myapp myapp.c `nc-config --cflags --libs` + +Building on Windows +******************* +Refer to the document COMPILE_CMake.txt diff --git a/ncgen/nciter.c b/ncgen/nc_iter.c similarity index 99% rename from ncgen/nciter.c rename to ncgen/nc_iter.c index 3ca953421..d42d20519 100644 --- a/ncgen/nciter.c +++ b/ncgen/nc_iter.c @@ -5,7 +5,7 @@ *********************************************************************/ #include "includes.h" -#include "nciter.h" +#include "nc_iter.h" #define CHECK(stat,f) if(stat != NC_NOERR) {check(stat,#f,__FILE__,__LINE__);} else {}