Encrypted overlay filesystems implementation for Android.
Also available on GitHub: https://github.com/hardcore-sushi/DroidFS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
513 B
28 lines
513 B
cmake_minimum_required(VERSION 3.4.1) |
|
|
|
add_library( |
|
gocryptfs |
|
SHARED |
|
IMPORTED |
|
) |
|
|
|
set_target_properties( |
|
gocryptfs |
|
PROPERTIES IMPORTED_LOCATION |
|
${PROJECT_SOURCE_DIR}/libgocryptfs/build/${ANDROID_ABI}/libgocryptfs.so |
|
) |
|
|
|
add_library( |
|
gocryptfs_jni |
|
SHARED |
|
src/main/native/gocryptfs_jni.c |
|
) |
|
|
|
target_link_libraries( |
|
gocryptfs_jni |
|
gocryptfs |
|
) |
|
|
|
include_directories( |
|
${PROJECT_SOURCE_DIR}/libgocryptfs/build/${ANDROID_ABI}/ |
|
)
|
|
|