[Scummvm-git-logs] scummvm master -> a8a80fe0192f0a94b6b6e8d0a968baaf243dac04
sev-
noreply at scummvm.org
Mon Sep 2 09:49:51 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
a8a80fe019 QDENGINE: Fix compilation with ImGui disabled
Commit: a8a80fe0192f0a94b6b6e8d0a968baaf243dac04
https://github.com/scummvm/scummvm/commit/a8a80fe0192f0a94b6b6e8d0a968baaf243dac04
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-09-02T11:49:32+02:00
Commit Message:
QDENGINE: Fix compilation with ImGui disabled
Changed paths:
engines/qdengine/module.mk
diff --git a/engines/qdengine/module.mk b/engines/qdengine/module.mk
index 8ceb8a6bc86..8e91f66731c 100644
--- a/engines/qdengine/module.mk
+++ b/engines/qdengine/module.mk
@@ -4,7 +4,6 @@ MODULE_OBJS = \
qdengine.o \
console.o \
metaengine.o \
- debugger/debugtools.o \
parser/qdscr_parser.o \
parser/xml_parser.o \
parser/xml_tag_buffer.o \
@@ -99,6 +98,11 @@ MODULE_OBJS = \
qdcore/qd_trigger_element.o \
qdcore/qd_video.o
+ifdef USE_IMGUI
+MODULE_OBJS += \
+ debugger/debugtools.o
+endif
+
# This module can be built as a plugin
ifeq ($(ENABLE_QDENGINE), DYNAMIC_PLUGIN)
PLUGIN := 1
More information about the Scummvm-git-logs
mailing list