[Scummvm-git-logs] scummvm branch-2-8 -> bb522af04141700a161b5d18eae0b0abc288e2fa

lephilousophe noreply at scummvm.org
Mon Dec 4 07:08:19 UTC 2023


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:
bb522af041 TEST: Don't build Ultima 1 or 8 tests when subengine is not built


Commit: bb522af04141700a161b5d18eae0b0abc288e2fa
    https://github.com/scummvm/scummvm/commit/bb522af04141700a161b5d18eae0b0abc288e2fa
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2023-12-04T08:07:55+01:00

Commit Message:
TEST: Don't build Ultima 1 or 8 tests when subengine is not built

Changed paths:
    test/module.mk


diff --git a/test/module.mk b/test/module.mk
index 185ea9a1a72..361612a804f 100644
--- a/test/module.mk
+++ b/test/module.mk
@@ -36,7 +36,12 @@ ifeq ($(ENABLE_WINTERMUTE), STATIC_PLUGIN)
 endif
 
 ifeq ($(ENABLE_ULTIMA), STATIC_PLUGIN)
-	TESTS += $(srcdir)/test/engines/ultima/*/*/*.h
+ifdef ENABLE_ULTIMA1
+	TESTS += $(srcdir)/test/engines/ultima/shared/*/*.h
+endif
+ifdef ENABLE_ULTIMA8
+	TESTS += $(srcdir)/test/engines/ultima/ultima8/*/*.h
+endif
 	TEST_LIBS += engines/ultima/libultima.a
 endif
 




More information about the Scummvm-git-logs mailing list