mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 15:24:18 +00:00
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
|
LOCAL_SRC_FILES := core/librealm-android-$(TARGET_ARCH_ABI).a
|
||||||
include $(PREBUILT_STATIC_LIBRARY)
|
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)
|
include $(CLEAR_VARS)
|
||||||
LOCAL_MODULE := libjsc
|
LOCAL_MODULE := libjsc
|
||||||
LOCAL_EXPORT_C_INCLUDES := jsc
|
LOCAL_EXPORT_C_INCLUDES := jsc
|
||||||
@ -92,11 +97,13 @@ endif
|
|||||||
LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
|
LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
|
||||||
ifeq ($(strip $(BUILD_TYPE_SYNC)),1)
|
ifeq ($(strip $(BUILD_TYPE_SYNC)),1)
|
||||||
LOCAL_STATIC_LIBRARIES := realm-android-sync-$(TARGET_ARCH_ABI)
|
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 += realm-android-$(TARGET_ARCH_ABI)
|
||||||
LOCAL_STATIC_LIBRARIES += ssl-$(TARGET_ARCH_ABI)
|
LOCAL_STATIC_LIBRARIES += ssl-$(TARGET_ARCH_ABI)
|
||||||
LOCAL_STATIC_LIBRARIES += crypto-$(TARGET_ARCH_ABI)
|
LOCAL_STATIC_LIBRARIES += crypto-$(TARGET_ARCH_ABI)
|
||||||
else
|
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)
|
LOCAL_STATIC_LIBRARIES += crypto-$(TARGET_ARCH_ABI)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user