diff options
author | Bastien Bouclet | 2019-12-01 17:19:50 +0100 |
---|---|---|
committer | Bastien Bouclet | 2019-12-01 17:19:50 +0100 |
commit | 34e835a20ca648b0fd2e67cefc84511c1dab6217 (patch) | |
tree | 97ba9b239a8fd9c9d8bba925b21262314de2f2c2 /backends/module.mk | |
parent | a51c23abd3a667811b01e90b0c8c53505021950a (diff) | |
download | scummvm-rg350-34e835a20ca648b0fd2e67cefc84511c1dab6217.tar.gz scummvm-rg350-34e835a20ca648b0fd2e67cefc84511c1dab6217.tar.bz2 scummvm-rg350-34e835a20ca648b0fd2e67cefc84511c1dab6217.zip |
3DS: Implement dynamic plugins
Allows a full build to run on old generation devices
Diffstat (limited to 'backends/module.mk')
-rw-r--r-- | backends/module.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/module.mk b/backends/module.mk index 9424e0abcd..88acd4cfd5 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -260,6 +260,11 @@ MODULE_OBJS += \ timer/tizen/timer.o endif +ifeq ($(BACKEND),3ds) +MODULE_OBJS += \ + plugins/3ds/3ds-provider.o +endif + ifeq ($(BACKEND),ds) MODULE_OBJS += \ fs/ds/ds-fs.o \ |