diff options
author | Garrett Brown <garbearucla@gmail.com> | 2014-03-02 17:04:45 -0800 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2016-12-01 18:08:29 -0800 |
commit | e2563f6529ea0f08fe153d6baa9dff0935ea8d65 (patch) | |
tree | a96d39b1dc64a0da9e13570ed4b869faede717a1 /Makefile.in | |
parent | 918e289427c97e9f108b1c9e2219537644ad4955 (diff) |
[retroplayer] Game add-ons
Thanks to Themaister for rewind functionality, fetzerch for mouse support,
file length check and cmake modifications, topfs2 for fixing a crash when
loading game clients, eibma for fixing linux compilation errors, a1rwulf
for catching a missing callback symbol and fixing some rebase errors, and
to notspiff for helping with the rebrand and cmake.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 3038a9b85d..f28925e9f2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -30,6 +30,7 @@ DIRECTORY_ARCHIVES=$(VideoPlayer_ARCHIVES) \ xbmc/addons/binary/interfaces/api1/AudioDSP/addon-callbacks-audiodsp.a \ xbmc/addons/binary/interfaces/api1/AudioEngine/addon-callbacks-audioengine.a \ xbmc/addons/binary/interfaces/api1/Codec/addon-callbacks-codec.a \ + xbmc/addons/binary/interfaces/api1/Game/addon-callbacks-game.a \ xbmc/addons/binary/interfaces/api1/GUI/addon-callbacks-gui.a \ xbmc/addons/binary/interfaces/api1/InputStream/addon-callbacks-inputstream.a \ xbmc/addons/binary/interfaces/api1/Peripheral/addon-callbacks-peripheral.a \ @@ -53,11 +54,16 @@ DIRECTORY_ARCHIVES=$(VideoPlayer_ARCHIVES) \ xbmc/filesystem/MusicDatabaseDirectory/musicdatabasedirectory.a \ xbmc/filesystem/VideoDatabaseDirectory/videodatabasedirectory.a \ xbmc/filesystem/filesystem.a \ + xbmc/games/addons/gameaddons.a \ + xbmc/games/addons/playback/gameaddonplayback.a \ + xbmc/games/addons/savestates/gamesavestates.a \ xbmc/games/controllers/controllers.a \ xbmc/games/controllers/dialogs/controllerdialogs.a \ xbmc/games/controllers/guicontrols/controllerguicontrols.a \ xbmc/games/controllers/windows/controllerwindows.a \ + xbmc/games/dialogs/gamedialogs.a \ xbmc/games/games.a \ + xbmc/games/ports/gameports.a \ xbmc/games/tags/gameinfotags.a \ xbmc/guilib/guilib.a \ xbmc/input/input.a \ @@ -153,7 +159,10 @@ ifeq ($(findstring osx,@ARCH@),osx) DIRECTORY_ARCHIVES += xbmc/input/joysticks/input_joysticks.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/dialogs/input_joystick_dialogs.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/generic/input_joysticks_generic.a +DIRECTORY_ARCHIVES += xbmc/input/keyboard/input_keyboard.a DIRECTORY_ARCHIVES += xbmc/input/keyboard/generic/input_keyboard_generic.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/input_mouse.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/generic/input_mouse_generic.a DIRECTORY_ARCHIVES += xbmc/network/osx/network.a DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a DIRECTORY_ARCHIVES += xbmc/powermanagement/osx/powermanagement.a @@ -170,8 +179,11 @@ ifeq (@USE_ANDROID@,1) DIRECTORY_ARCHIVES += xbmc/input/joysticks/input_joysticks.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/dialogs/input_joystick_dialogs.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/generic/input_joysticks_generic.a +DIRECTORY_ARCHIVES += xbmc/input/keyboard/input_keyboard.a DIRECTORY_ARCHIVES += xbmc/input/keyboard/generic/input_keyboard_generic.a DIRECTORY_ARCHIVES += xbmc/input/linux/input_linux.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/input_mouse.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/generic/input_mouse_generic.a DIRECTORY_ARCHIVES += xbmc/input/touch/input_touch.a DIRECTORY_ARCHIVES += xbmc/input/touch/generic/input_touch_generic.a DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a @@ -182,8 +194,11 @@ else DIRECTORY_ARCHIVES += xbmc/input/joysticks/input_joysticks.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/dialogs/input_joystick_dialogs.a DIRECTORY_ARCHIVES += xbmc/input/joysticks/generic/input_joysticks_generic.a +DIRECTORY_ARCHIVES += xbmc/input/keyboard/input_keyboard.a DIRECTORY_ARCHIVES += xbmc/input/keyboard/generic/input_keyboard_generic.a DIRECTORY_ARCHIVES += xbmc/input/linux/input_linux.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/input_mouse.a +DIRECTORY_ARCHIVES += xbmc/input/mouse/generic/input_mouse_generic.a DIRECTORY_ARCHIVES += xbmc/input/touch/input_touch.a DIRECTORY_ARCHIVES += xbmc/input/touch/generic/input_touch_generic.a DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a @@ -227,6 +242,7 @@ LIBADDON_DIRS=\ lib/addons/library.kodi.guilib \ lib/addons/library.kodi.inputstream \ lib/addons/library.kodi.peripheral \ + lib/addons/library.kodi.game \ ESTUARY_MEDIA=addons/skin.estuary/media SKIN_DIRS=$(ESTUARY_MEDIA) @@ -347,6 +363,7 @@ libaddon: exports $(MAKE) -C lib/addons/library.kodi.adsp $(MAKE) -C lib/addons/library.kodi.audioengine $(MAKE) -C lib/addons/library.xbmc.codec + $(MAKE) -C lib/addons/library.kodi.game $(MAKE) -C lib/addons/library.kodi.guilib $(MAKE) -C lib/addons/library.kodi.peripheral $(MAKE) -C lib/addons/library.xbmc.pvr |