scummvm/gui/module.mk
Alexander Tkachev 99c2418d1a GUI: Rewrite Cloud tab
- StorageWizardDialog is removed, along with bmps it was using;
- EditTextWidget now accepts custom font in constructor;
- ScrollContainer scrollbar now jumps to top when content height changes
so it's "overscrolled";
- IndexPageHandler now does not awaits for `code` GET-parameter, as
local webserver is no longer used to connect Storages;
- CloudManager and all corresponding Storages are updated to support
disconnecting and to notify about successful connection.
2019-07-30 14:51:41 -04:00

69 lines
1.1 KiB
Makefile

MODULE := gui
MODULE_OBJS := \
about.o \
browser.o \
chooser.o \
console.o \
debugger.o \
dialog.o \
editgamedialog.o \
error.o \
EventRecorder.o \
filebrowser-dialog.o \
gui-manager.o \
launcher.o \
massadd.o \
message.o \
object.o \
options.o \
predictivedialog.o \
saveload.o \
saveload-dialog.o \
themebrowser.o \
ThemeEngine.o \
ThemeEval.o \
ThemeLayout.o \
ThemeParser.o \
Tooltip.o \
unknown-game-dialog.o \
animation/Animation.o \
animation/RepeatAnimationWrapper.o \
animation/SequenceAnimationComposite.o \
widget.o \
widgets/editable.o \
widgets/edittext.o \
widgets/list.o \
widgets/popup.o \
widgets/scrollbar.o \
widgets/scrollcontainer.o \
widgets/tab.o
ifdef USE_CLOUD
ifdef USE_LIBCURL
MODULE_OBJS += \
downloaddialog.o \
remotebrowser.o
endif
endif
ifdef ENABLE_EVENTRECORDER
MODULE_OBJS += \
editrecorddialog.o \
onscreendialog.o \
recorderdialog.o
endif
ifdef USE_FLUIDSYNTH
MODULE_OBJS += \
fluidsynth-dialog.o
endif
ifdef USE_UPDATES
MODULE_OBJS += \
updates-dialog.o
endif
# Include common rules
include $(srcdir)/rules.mk