diff options
author | montellese <montellese@xbmc.org> | 2012-06-24 14:43:00 +0200 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 19:14:45 -0400 |
commit | 2923e19005daef3c515de7a9de848d200dfc38f8 (patch) | |
tree | edff394c0ebcff17e679d411ef1089b49ffd7636 /Makefile.in | |
parent | 398710e770993ed993b1932818e03ee2db6035df (diff) |
[droid] implement CAndroidPowerSyscall which uses CXBMCApp::GetBatteryLevel() to poll the battery level
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 360ca216fe..16e71c205f 100755 --- a/Makefile.in +++ b/Makefile.in @@ -110,7 +110,13 @@ DIRECTORY_ARCHIVES += xbmc/windowing/osx/windowing_osx.a else DIRECTORY_ARCHIVES += xbmc/input/linux/input_linux.a DIRECTORY_ARCHIVES += xbmc/network/linux/network_linux.a + +ifeq (@USE_ANDROID@,1) +DIRECTORY_ARCHIVES += xbmc/powermanagement/android/powermanagement_android.a +else DIRECTORY_ARCHIVES += xbmc/powermanagement/linux/powermanagement_linux.a +endif + DIRECTORY_ARCHIVES += xbmc/storage/linux/storage_linux.a DIRECTORY_ARCHIVES += xbmc/windowing/X11/windowing_X11.a endif |