summaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2018-12-28 22:55:27 +0100
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2018-12-28 22:55:27 +0100
commit8ead043a524ffedc634663779a49730cc5da8d97 (patch)
treea149210382f8617838a7df85d29682723a4e3c2a /Makefile.mingw
parentbf6eb1b9ff4cc8c8a2aa02dd5ea9224a6e4dcbbc (diff)
create class name automatically
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
index 5a0d289..796496a 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -2,7 +2,7 @@
CXX = i686-w64-mingw32-c++
CFLAGS = -std=c++98 -Wall -Wextra -mwindows -municode -DUNICODE -D_UNICODE -fno-exceptions -fno-rtti -gstabs
-LDFLAGS = -luser32 -lcomctl32 -lshell32 -lversion -static
+LDFLAGS = -luser32 -lcomctl32 -lshell32 -lrpcrt4 -lversion -static
out/widgetfactory.exe: out/widgetfactory.o out/alfbutton.o out/alfcompat.o out/alf.o out/alfdpiaware.o out/alfedit.o out/alflabel.o
$(CXX) $(CFLAGS) -o $@ $^ $(LDFLAGS)