Skip to content

Commit

Permalink
[sqlite] Add sqlite library
Browse files Browse the repository at this point in the history
Add sqlite lib and modify .mk

Signed-off-by: hyunil park <[email protected]>
  • Loading branch information
songgot committed Jan 17, 2025
1 parent dd9e8b1 commit 3c35d4f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions jni/mlops-agent.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@ ifndef MLOPS_AGENT_ROOT
$(error MLOPS_AGENT_ROOT is not defined!)
endif

include $(CLEAR_VARS)
LOCAL_MODULE := sqliteX
LOCAL_SRC_FILES := $(MLOPS_AGENT_ROOT)/libsqliteX/$(APP_ABI)/libsqliteX.so
LOCAL_EXPORT_C_INCLUDES := $(MLOPS_AGENT_ROOT)/libsqliteX/include
include $(PREBUILT_SHARED_LIBRARY)


include $(CLEAR_VARS)
# mlops agent headers
MLOPS_AGENT_INCLUDE := $(MLOPS_AGENT_ROOT)/daemon/include

# mlops agent sources
MLOPS_AGENT_SRCS := $(MLOPS_AGENT_ROOT)/daemon/mlops-agent-android.c
LOCAL_SHARED_LIBRARIES := sqliteX
include $(BUILD_SHARED_LIBRARY)
Binary file added libsqliteX/arm64-v8a/libsqliteX.so
Binary file not shown.
Binary file added libsqliteX/armeabi-v7a/libsqliteX.so
Binary file not shown.
Binary file added libsqliteX/x86/libsqliteX.so
Binary file not shown.
Binary file added libsqliteX/x86_64/libsqliteX.so
Binary file not shown.

0 comments on commit 3c35d4f

Please sign in to comment.