scummvm/devtools/create_engine/files_events/module.mk
Paul Gilbert 49fb52efd6 CREATE_ENGINE: Added View class for events template
Improves mouse events for the events-based project template.
This includes a View class that:
1) Mouse events only get sent to the control under the mouse
rather than all controls on the view
2) Elements will get Focus/Unfocus messages as the mouse
moves in or out of their bounds
2024-05-09 20:40:58 -07:00

21 lines
332 B
Makefile

MODULE := engines/xyzzy
MODULE_OBJS = \
xyzzy.o \
console.o \
events.o \
messages.o \
metaengine.o \
view.o \
view1.o
# This module can be built as a plugin
ifeq ($(ENABLE_XYZZY), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk
# Detection objects
DETECT_OBJS += $(MODULE)/detection.o