1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-10 00:20:13 +00:00

Link with gdi32 when compiling Windows GUI apps

This commit is contained in:
Samuel Gomes 2024-04-19 18:11:36 +05:30
parent ebb4dbd3ad
commit 8cf0492418

View file

@ -360,7 +360,7 @@ ifeq ($(OS),win)
LICENSE_IN_USE := $(filter-out freeglut,$(LICENSE_IN_USE))
else
CXXLIBS += -lopengl32 -lglu32 -lwinmm
CXXLIBS += -lopengl32 -lglu32 -lwinmm -lgdi32
endif
ifneq ($(filter y,$(DEP_SOCKETS)),)