implementing mouse move and get screen size, removing warnings

This commit is contained in:
2024-09-15 08:56:22 +02:00
parent 2b9b026d68
commit 596393ed20
14 changed files with 85 additions and 41 deletions

View File

@@ -8,6 +8,8 @@ IMAGES_OPTIMIZED ?= true
FORCE_INTEGRATED_GPU ?= false
GRAPHICS_MEMORY_DUMP ?= false
PROFILER ?= false
FORCE_WAYLAND ?= false
DISABLE_ALL_SAFETIES ?= false
_ENABLEDFLAGS =
SRCS = $(wildcard $(addsuffix /*.cpp, runtime/Sources/Core))
@@ -57,6 +59,14 @@ ifeq ($(PROFILER), true)
_ENABLEDFLAGS += PROFILER
endif
ifeq ($(FORCE_WAYLAND), true)
_ENABLEDFLAGS += FORCE_WAYLAND
endif
ifeq ($(DISABLE_ALL_SAFETIES), true)
_ENABLEDFLAGS += DISABLE_ALL_SAFETIES
endif
CXXFLAGS += $(addprefix -D, $(_ENABLEDFLAGS))
RM = rm -rf