react-native-mmkv-storage
Version:
This library aims to provide a fast & reliable solution for you data storage needs in react-native apps. It uses [MMKV](https://github.com/Tencent/MMKV) by Tencent under the hood on Android and iOS both that is used by their WeChat app(more than 1 Billion
41 lines (33 loc) • 1.13 kB
Plain Text
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
cmake_minimum_required(VERSION 3.13)
set(CMAKE_VERBOSE_MAKEFILE on)
# https://github.com/android/ndk/wiki/Changelog-r27
# Enable Android 16KB page size compatibility (NDK r27+)
set(ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES ON)
file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS *.cpp react/renderer/components/MMKVStorageSpec/*.cpp)
add_library(
react_codegen_MMKVStorageSpec
OBJECT
${react_codegen_SRCS}
)
target_include_directories(react_codegen_MMKVStorageSpec PUBLIC . react/renderer/components/MMKVStorageSpec)
target_link_libraries(
react_codegen_MMKVStorageSpec
fbjni
jsi
# We need to link different libraries based on whether we are building rncore or not, that's necessary
# because we want to break a circular dependency between react_codegen_rncore and reactnative
reactnative
)
target_compile_options(
react_codegen_MMKVStorageSpec
PRIVATE
-DLOG_TAG=\"ReactNative\"
-fexceptions
-frtti
-std=c++20
-Wall
)