Added OPTFLAGS.
This commit is contained in:
parent
a59d7311f4
commit
ca2ead5c6d
11
nmake.opt
11
nmake.opt
@ -1,4 +1,4 @@
|
||||
# $Id: nmake.opt,v 1.6 2004-09-08 18:04:40 dron Exp $
|
||||
# $Id: nmake.opt,v 1.7 2004-11-02 21:00:26 fwarmerdam Exp $
|
||||
#
|
||||
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
|
||||
#
|
||||
@ -98,6 +98,12 @@ EXTRASAMPLE_AS_ALPHA_SUPPORT = 1
|
||||
CHECK_JPEG_YCBCR_SUBSAMPLING = 1
|
||||
|
||||
#
|
||||
# Pick debug or optimized build flags. We default to an optimized build
|
||||
# with no debugging information.
|
||||
#
|
||||
OPTFLAGS = /Ox
|
||||
#OPTFLAGS = /Zi
|
||||
|
||||
# Compiler specific options. You may probably want to adjust compilation
|
||||
# parameters in CFLAGS variable. Refer to your compiler documentation
|
||||
# for the option reference.
|
||||
@ -107,7 +113,8 @@ CC = cl /nologo
|
||||
AR = lib /nologo
|
||||
LD = link /nologo
|
||||
|
||||
CFLAGS = /W3 /MD $(INCL) $(WINMODE) $(EXTRAFLAGS)
|
||||
|
||||
CFLAGS = /W3 /MD $(OPTFLAGS) $(INCL) $(WINMODE) $(EXTRAFLAGS)
|
||||
EXTRAFLAGS =
|
||||
LIBS =
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user