react-native-levin-encrypted-uploader
Version:
A DIY React Native file uploader with mandatory encryption, inspired by the VydiaRNFileUploader. Warning: This is very much a work in progress - use at your own risk! 🚧
22 lines (18 loc) • 420 B
Plain Text
cmake_minimum_required(VERSION 3.13)
project(react-native-levin-encrypted-uploader)
# This is a minimal implementation to satisfy the React Native build system
add_library(
${PROJECT_NAME}
SHARED
dummy.cpp
)
target_include_directories(
${PROJECT_NAME}
PRIVATE
${NODE_MODULES_DIR}/react-native/ReactCommon
)
find_library(LOG_LIB log)
target_link_libraries(
${PROJECT_NAME}
${LOG_LIB}
)