Disabled libs unnecessary for Alien Blaster

This commit is contained in:
pelya
2010-07-08 18:42:04 +03:00
parent 30776b9bd1
commit 5b3e30e4b7
4 changed files with 6 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ SDL_TRACKBALL_KEYUP_DELAY := 1
# resized in HW-accelerated way, however it eats a tiny bit of CPU
SDL_VIDEO_RENDER_RESIZE := 2
COMPILED_LIBRARIES := mad sdl_mixer sdl_image sdl_ttf
COMPILED_LIBRARIES := sdl_mixer sdl_image
# If SDL_Mixer should link to libMAD
SDL_MIXER_USE_LIBMAD :=

View File

@@ -5,6 +5,6 @@ APP_PROJECT_PATH := $(call my-dir)/..
# sdl_image depends on png and jpeg
# sdl_ttf depends on freetype
APP_MODULES := application sdl_main stlport tremor png jpeg freetype mad sdl_mixer sdl_image sdl_ttf
APP_MODULES := application sdl_main stlport tremor png jpeg freetype sdl_mixer sdl_image
APP_ABI := armeabi armeabi-v7a
APP_ABI := armeabi

View File

@@ -24,5 +24,5 @@ class Globals {
}
class LoadLibrary {
public LoadLibrary() { System.loadLibrary("sdl"); System.loadLibrary("mad"); System.loadLibrary("sdl_mixer"); System.loadLibrary("sdl_image"); System.loadLibrary("sdl_ttf"); };
public LoadLibrary() { System.loadLibrary("sdl"); System.loadLibrary("sdl_mixer"); System.loadLibrary("sdl_image"); };
}