Linking against realm-parser (#1613)
* Linking against realm-parser * Define the realm-parser-android library target
This commit is contained in:
parent
cd8db46aa7
commit
425387c41a
|
@ -20,6 +20,11 @@ LOCAL_EXPORT_C_INCLUDES := core/include
|
|||
LOCAL_SRC_FILES := core/librealm-android-$(TARGET_ARCH_ABI).a
|
||||
include $(PREBUILT_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := realm-parser-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_SRC_FILES := core/librealm-parser-android-$(TARGET_ARCH_ABI).a
|
||||
include $(PREBUILT_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := libjsc
|
||||
LOCAL_EXPORT_C_INCLUDES := jsc
|
||||
|
@ -92,11 +97,13 @@ endif
|
|||
LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
|
||||
ifeq ($(strip $(BUILD_TYPE_SYNC)),1)
|
||||
LOCAL_STATIC_LIBRARIES := realm-android-sync-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += realm-parser-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += realm-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += ssl-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += crypto-$(TARGET_ARCH_ABI)
|
||||
else
|
||||
LOCAL_STATIC_LIBRARIES := realm-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES := realm-parser-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += realm-android-$(TARGET_ARCH_ABI)
|
||||
LOCAL_STATIC_LIBRARIES += crypto-$(TARGET_ARCH_ABI)
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue