Android.mk 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE := cocos2d_simulator_static
  4. LOCAL_MODULE_FILENAME := libsimulator
  5. LOCAL_ARM_MODE := arm
  6. LOCAL_SRC_FILES := \
  7. ../lib/protobuf-lite/google/protobuf/io/coded_stream.cc \
  8. ../lib/protobuf-lite/google/protobuf/stubs/common.cc \
  9. ../lib/protobuf-lite/google/protobuf/extension_set.cc \
  10. ../lib/protobuf-lite/google/protobuf/generated_message_util.cc \
  11. ../lib/protobuf-lite/google/protobuf/message_lite.cc \
  12. ../lib/protobuf-lite/google/protobuf/stubs/once.cc \
  13. ../lib/protobuf-lite/google/protobuf/stubs/atomicops_internals_x86_gcc.cc \
  14. ../lib/protobuf-lite/google/protobuf/repeated_field.cc \
  15. ../lib/protobuf-lite/google/protobuf/wire_format_lite.cc \
  16. ../lib/protobuf-lite/google/protobuf/io/zero_copy_stream.cc \
  17. ../lib/protobuf-lite/google/protobuf/io/zero_copy_stream_impl_lite.cc \
  18. ../lib/protobuf-lite/google/protobuf/stubs/stringprintf.cc \
  19. ../lib/runtime/ConnectWaitLayer.cpp \
  20. ../lib/runtime/ConsoleCommand.cpp \
  21. ../lib/runtime/FileServer.cpp \
  22. ../lib/runtime/Landscape_png.cpp \
  23. ../lib/runtime/PlayDisable_png.cpp \
  24. ../lib/runtime/PlayEnable_png.cpp \
  25. ../lib/runtime/Portrait_png.cpp \
  26. ../lib/runtime/Protos.pb.cc \
  27. ../lib/runtime/Runtime.cpp \
  28. ../lib/runtime/RuntimeProtocol.cpp \
  29. ../lib/runtime/RuntimeCCSImpl.cpp \
  30. ../lib/runtime/Shine_png.cpp \
  31. ../lib/runtime/ConfigParser.cpp \
  32. ../lib/runtime/VisibleRect.cpp \
  33. ../lib/ProjectConfig/ProjectConfig.cpp \
  34. ../lib/ProjectConfig/SimulatorConfig.cpp \
  35. hellolua/Runtime_android.cpp
  36. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../lib $(LOCAL_PATH)/../lib/protobuf-lite
  37. LOCAL_C_INCLUDES := $(LOCAL_PATH)/../lib $(LOCAL_PATH)/../lib/protobuf-lite
  38. LOCAL_STATIC_LIBRARIES := cocos2dx_static
  39. include $(BUILD_STATIC_LIBRARY)