Skip to content

Commit 17d06ca

Browse files
committed
new release
1 parent 182f9cc commit 17d06ca

21 files changed

+2126
-533
lines changed

Makefile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ OBJ_SUFFIX = .o
55
EXE_NAME = softgpu
66
EXE_SUFFIX = .exe
77
LDFLAGS=-static
8-
LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lsetupapi -lkernel32 -lshell32 -Wl,-subsystem,windows
9-
#LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lsetupapi -lkernel32 -lshell32 -Wl,-subsystem,console
8+
LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lkernel32 -lshell32 -lversion -Wl,-subsystem,windows
9+
#LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lkernel32 -lshell32 -lversion -Wl,-subsystem,console
1010

11-
SOFTGPU_PATCH=2023
11+
SOFTGPU_PATCH=2024
1212

1313
ifdef EXTRA_INFO
14-
CFLAGS += -DEXTRA_INFO="\"$(EXTRA_INFO)\""
14+
CFLAGS += -DEXTRA_INFO="$(EXTRA_INFO)"
15+
endif
16+
17+
ifdef EXTRA_ICO
18+
RES_FLAGS += -DEXTRA_ICO="$(EXTRA_ICO)"
1519
endif
1620

1721
NULLOUT=$(if $(filter $(OS),Windows_NT),NUL,/dev/null)
@@ -34,7 +38,10 @@ SOURCES = \
3438
winini.c \
3539
windrv.c \
3640
winreg.c \
41+
winres.c \
3742
setuperr.c \
43+
window.c \
44+
settings.c \
3845
resource/softgpu.rc
3946

4047

README.md

Lines changed: 122 additions & 62 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)