From 59379c144e96b15083cae3e8612b53f8cd28b9ff Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Fri, 4 Mar 2005 11:48:22 +0000 Subject: [PATCH] Add more comments, change the config file organization a bit as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=764 --- nmake.opt | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/nmake.opt b/nmake.opt index 37393ef7..507ddbe7 100644 --- a/nmake.opt +++ b/nmake.opt @@ -1,4 +1,4 @@ -# $Id: nmake.opt,v 1.11 2004-12-04 11:08:43 dron Exp $ +# $Id: nmake.opt,v 1.12 2005-03-04 11:48:22 dron Exp $ # # Copyright (C) 2004, Andrey Kiselev # @@ -24,6 +24,10 @@ # Compile time parameters for MS Visual C++ compiler. # You may edit this file to specify building options. +# +###### Edit the following lines to choose a feature set you need. ####### +# + # # Select WINMODE_CONSOLE to build a library which reports errors to stderr, or # WINMODE_WINDOWED to build such that errors are reported via MessageBox(). @@ -31,10 +35,6 @@ WINMODE_CONSOLE = 1 #WINMODE_WINDOWED = 1 -# Uncomment following line to enable using Windows Common RunTime Library -# instead of system calls. See notes on top of tif_unix.c module for details. -#USE_WIN_CRT_LIB = 1 - # # Comment out the following lines to disable internal codecs. # @@ -101,6 +101,10 @@ EXTRASAMPLE_AS_ALPHA_SUPPORT = 1 # CHECK_JPEG_YCBCR_SUBSAMPLING = 1 +# +####################### Compiler related options. ####################### +# + # # Pick debug or optimized build flags. We default to an optimized build # with no debugging information. @@ -109,6 +113,12 @@ CHECK_JPEG_YCBCR_SUBSAMPLING = 1 OPTFLAGS = /Ox /MD /GX /W3 #OPTFLAGS = /Zi +# +# Uncomment following line to enable using Windows Common RunTime Library +# instead of system calls. See notes on top of tif_unix.c module for details. +# +#USE_WIN_CRT_LIB = 1 + # Compiler specific options. You may probably want to adjust compilation # parameters in CFLAGS variable. Refer to your compiler documentation # for the option reference.