Skip to content

Commit

Permalink
disable VC warning 4100 when building enc265
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Jun 24, 2015
1 parent 8990a29 commit eef2459
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion enc265/Makefile.vc7
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
# Makefile for Microsoft Visual Studio 2003
#
CFLAGS=/I.. /I..\libde265 /I..\extra
CC=cl /nologo
CC=cl /nologo
LINK=link /nologo /subsystem:console
DEFINES=/DWIN32

CFLAGS=$(CFLAGS) /MT /Ob2 /Oi /W4 /EHsc
CFLAGS=$(CFLAGS) $(DEFINES)

# unreferenced formal parameter
CFLAGS=$(CFLAGS) /wd4100


OBJS=\
..\extra\getopt_long.obj \
..\extra\getopt.obj \
Expand Down

0 comments on commit eef2459

Please sign in to comment.