2015-01-08 14:10:28 +08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := cocos2d_simulator_static
|
|
|
|
|
|
|
|
LOCAL_MODULE_FILENAME := libsimulator
|
|
|
|
|
2016-07-08 15:29:35 +08:00
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
|
2015-01-08 14:10:28 +08:00
|
|
|
LOCAL_SRC_FILES := \
|
2015-04-02 18:27:53 +08:00
|
|
|
../lib/protobuf-lite/google/protobuf/io/coded_stream.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/stubs/common.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/extension_set.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/generated_message_util.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/message_lite.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/stubs/once.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/stubs/atomicops_internals_x86_gcc.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/repeated_field.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/wire_format_lite.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/io/zero_copy_stream.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/io/zero_copy_stream_impl_lite.cc \
|
|
|
|
../lib/protobuf-lite/google/protobuf/stubs/stringprintf.cc \
|
|
|
|
../lib/runtime/ConnectWaitLayer.cpp \
|
|
|
|
../lib/runtime/ConsoleCommand.cpp \
|
|
|
|
../lib/runtime/FileServer.cpp \
|
|
|
|
../lib/runtime/Landscape_png.cpp \
|
|
|
|
../lib/runtime/PlayDisable_png.cpp \
|
|
|
|
../lib/runtime/PlayEnable_png.cpp \
|
|
|
|
../lib/runtime/Portrait_png.cpp \
|
|
|
|
../lib/runtime/Protos.pb.cc \
|
|
|
|
../lib/runtime/Runtime.cpp \
|
|
|
|
../lib/runtime/RuntimeProtocol.cpp \
|
|
|
|
../lib/runtime/RuntimeCCSImpl.cpp \
|
|
|
|
../lib/runtime/Shine_png.cpp \
|
2015-01-12 12:52:44 +08:00
|
|
|
../lib/runtime/ConfigParser.cpp \
|
2015-04-02 18:27:53 +08:00
|
|
|
../lib/runtime/VisibleRect.cpp \
|
2015-01-08 14:10:28 +08:00
|
|
|
../lib/ProjectConfig/ProjectConfig.cpp \
|
2015-01-12 17:54:58 +08:00
|
|
|
../lib/ProjectConfig/SimulatorConfig.cpp \
|
2015-04-02 18:27:53 +08:00
|
|
|
hellolua/Runtime_android.cpp
|
2015-01-08 14:10:28 +08:00
|
|
|
|
|
|
|
|
2015-04-02 18:27:53 +08:00
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../lib $(LOCAL_PATH)/../lib/protobuf-lite
|
2015-01-08 14:10:28 +08:00
|
|
|
|
2015-01-12 17:54:58 +08:00
|
|
|
|
2015-04-02 18:27:53 +08:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../lib $(LOCAL_PATH)/../lib/protobuf-lite
|
2015-01-08 14:10:28 +08:00
|
|
|
|
2015-04-02 18:27:53 +08:00
|
|
|
LOCAL_STATIC_LIBRARIES := cocos2dx_static
|
2015-01-08 14:10:28 +08:00
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|