Add more comments, change the config file organization a bit as per bug

http://bugzilla.remotesensing.org/show_bug.cgi?id=764
This commit is contained in:
Andrey Kiselev 2005-03-04 11:48:22 +00:00
parent e045b53ee8
commit 59379c144e

View File

@ -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 <dron@remotesensing.org> # Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
# #
@ -24,6 +24,10 @@
# Compile time parameters for MS Visual C++ compiler. # Compile time parameters for MS Visual C++ compiler.
# You may edit this file to specify building options. # 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 # Select WINMODE_CONSOLE to build a library which reports errors to stderr, or
# WINMODE_WINDOWED to build such that errors are reported via MessageBox(). # WINMODE_WINDOWED to build such that errors are reported via MessageBox().
@ -31,10 +35,6 @@
WINMODE_CONSOLE = 1 WINMODE_CONSOLE = 1
#WINMODE_WINDOWED = 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. # Comment out the following lines to disable internal codecs.
# #
@ -101,6 +101,10 @@ EXTRASAMPLE_AS_ALPHA_SUPPORT = 1
# #
CHECK_JPEG_YCBCR_SUBSAMPLING = 1 CHECK_JPEG_YCBCR_SUBSAMPLING = 1
#
####################### Compiler related options. #######################
#
# #
# Pick debug or optimized build flags. We default to an optimized build # Pick debug or optimized build flags. We default to an optimized build
# with no debugging information. # with no debugging information.
@ -109,6 +113,12 @@ CHECK_JPEG_YCBCR_SUBSAMPLING = 1
OPTFLAGS = /Ox /MD /GX /W3 OPTFLAGS = /Ox /MD /GX /W3
#OPTFLAGS = /Zi #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 # Compiler specific options. You may probably want to adjust compilation
# parameters in CFLAGS variable. Refer to your compiler documentation # parameters in CFLAGS variable. Refer to your compiler documentation
# for the option reference. # for the option reference.