aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorColin Snover2017-01-15 18:31:05 -0600
committerColin Snover2017-01-15 18:32:07 -0600
commit9ff41967a04e54e5de6207b8c46442833857aadc (patch)
tree3935db8aeb7c27c0587870f60eacf750b3baabf1 /test
parentad1bb852eb74c336c84bedf2999c0040bf7a04bd (diff)
downloadscummvm-rg350-9ff41967a04e54e5de6207b8c46442833857aadc.tar.gz
scummvm-rg350-9ff41967a04e54e5de6207b8c46442833857aadc.tar.bz2
scummvm-rg350-9ff41967a04e54e5de6207b8c46442833857aadc.zip
BUILD: Fix PSP build of test runner
Diffstat (limited to 'test')
-rw-r--r--test/module.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/module.mk b/test/module.mk
index de2f94d8c6..607eacc1ea 100644
--- a/test/module.mk
+++ b/test/module.mk
@@ -23,6 +23,12 @@ ifdef N64
TEST_LDFLAGS := $(filter-out -mno-crt0,$(TEST_LDFLAGS))
endif
+ifdef PSP
+TEST_LIBS += backends/platform/psp/memory.o \
+ backends/platform/psp/mp3.o \
+ backends/platform/psp/trace.o
+endif
+
ifdef HAVE_GCC3
# In test/common/str.h, we test a zero length format string. This causes GCC
# to generate a warning which in turn poses a problem when building with -Werror.