mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
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
21 lines
332 B
Makefile
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
|