ms-nfs41-client/install/sources
Casey Bodley 3613a75914 install: disabled warning 4711
nfs_install was failing to build in 'free' configurations because of warning 4711: function 'foo' selected for automatic inline expansion

Signed-off-by: Casey Bodley <cbodley@citi.umich.edu>
2010-10-19 11:17:13 -04:00

15 lines
475 B
Text

TARGETTYPE=PROGRAM
TARGETNAME=nfs_install
SOURCES=nfs_install.c nfsreginst.c
UMTYPE=console
USE_MSVCRT=1
INCLUDES=..\sys
!IF 0
/W3 is default level
bump to /Wall, but suppress warnings generated by system includes,
as well as the following warnings:
4100 - unused function call arguments (we have lots of stubs)
4127 - constant conditional (I like to use if(0) or if(1))
!ENDIF
MSC_WARNING_LEVEL=/Wall /wd4668 /wd4619 /wd4820 /wd4255 /wd4100 /wd4127 /wd4201 /wd4214 /wd4711