Skip to content

Commit

Permalink
version 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
delhoume committed Dec 28, 2021
1 parent 791c4cb commit b53b95e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion avi/avi.mak
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CC = cl
LD = link

VLIVDIR = ..\..
VLIVDIR = ..\..\vliv\src

DEBUG=/Ox

Expand Down
2 changes: 1 addition & 1 deletion internal/internal.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CC = cl
RC = rc
LD = link

VLIVDIR = ..\..
VLIVDIR = ..\..\vliv\src

TIFF = tiff-4.3.0\libtiff
TIFFFLAGS = -I$(TIFF)
Expand Down
4 changes: 2 additions & 2 deletions jpeg2000/jpeg2000.mak
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CC = cl
LD = link

VLIVDIR = ..\..
VLIVDIR = ..\..\vliv\src

DEBUG=/Ox
#DEBUG=/Od /Zi
Expand All @@ -10,7 +10,7 @@ JASPER = jasper-1.900.1\src\libjasper
JASPERLIB = $(JASPER)\build\jasper.lib
JASPERFLAGS = /I$(JASPER)\include /DJAS_WIN_MSVC_BUILD

CFLAGS = /nologo /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I$(VLIVDIR)
CFLAGS = /nologo /W3 $(DEBUG) /MD /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I$(VLIVDIR)

SYSLIBS = user32.lib

Expand Down
2 changes: 1 addition & 1 deletion qoi/qoi.mak
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CC = cl
LD = link

VLIVDIR = ..\..
VLIVDIR = ..\..\vliv\src

DEBUG=/Ox

Expand Down
6 changes: 3 additions & 3 deletions webp/webp.mak
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
CC = cl
LD = link

DEBUG=/Od
DEBUG=/Ox

CFLAGS = /nologo /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I../.. /Ilibwebp-0.2.1-windows-x86/dev/Include
CFLAGS = /nologo /MD /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I../../vliv\src /Ilibwebp-0.2.1-windows-x86/dev/Include

SYSLIBS = wininet.lib user32.lib gdi32.lib kernel32.lib comctl32.lib comdlg32.lib shlwapi.lib \
shell32.lib advapi32.lib version.lib strsafe.lib libwebp-0.2.1-windows-x86/dev/Lib/libwebp.lib
Expand All @@ -14,7 +14,7 @@ webp.obj : webp.c webp.h
$(CC) $(CFLAGS) /c webp.c

webp.dll: webp.obj
$(LD) /debug /dll /out:webp.dll webp.obj $(SYSLIBS)
$(LD) /dll /out:webp.dll webp.obj $(SYSLIBS)

clean:
del webp.obj webp.dll
4 changes: 2 additions & 2 deletions wic/wichandler.mak
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
CC = cl
LD = link

VLIVDIR = ..\..
VLIVDIR = ..\..\vliv\src

WINDOWSCODECSDIR="c:\program files\microsoft sdks\windows\v6.0"

DEBUG=/Ox

CFLAGS = /nologo /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I$(VLIVDIR) /I$(WINDOWSCODECSDIR)\include
CFLAGS = /nologo /MD /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I$(VLIVDIR) /I$(WINDOWSCODECSDIR)\include

SYSLIBS = ole32.lib $(WINDOWSCODECSDIR)\lib\windowscodecs.lib user32.lib

Expand Down

0 comments on commit b53b95e

Please sign in to comment.