From 6a921265db9ff12a263ff1a88118a69a65b7a2df Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Mon, 22 Aug 2016 23:25:27 +0200 Subject: Changed self-test build behaviour from opt-out to opt-in --- nmake.opt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'nmake.opt') diff --git a/nmake.opt b/nmake.opt index 79637ea4..2291fad8 100644 --- a/nmake.opt +++ b/nmake.opt @@ -22,12 +22,16 @@ PROJ_LIB_DIR=$(INSTDIR)\SHARE # Uncomment the first for an optimized build, or the second for debug. !IFNDEF OPTFLAGS !IFNDEF DEBUG -OPTFLAGS= /nologo /Ox /Op /MD +OPTFLAGS= /Ox /Op /MD !ELSE -OPTFLAGS= /nologo /Zi /MD /Fdproj.pdb +OPTFLAGS= /Zi /MD /Fdproj.pdb !ENDIF !ENDIF +!IFDEF SELFTEST +OPTFLAGS= $(OPTFLAGS) -DPJ_SELFTEST +!ENDIF + # Uncomment the first for linking exes against DLL or second for static EXE_PROJ = proj_i.lib #EXE_PROJ = proj.lib -- cgit v1.2.3