mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 06:33:35 +00:00
implementing mouse move and get screen size, removing warnings
This commit is contained in:
10
Makefile
10
Makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user