removed jni files (moved them to caller android project)

This commit is contained in:
George 2023-06-05 17:54:57 +08:00
parent c3b4efc89e
commit 1855e0820e
2 changed files with 0 additions and 13 deletions

View file

@ -443,7 +443,6 @@ add_library(llama
llama.cpp
llama.h
llama-util.h
llama-jni.cpp
)
target_include_directories(llama PUBLIC .)

View file

@ -1,12 +0,0 @@
#include <jni.h>
#include "llama.h"
//
// Created by gcpth on 05/06/2023.
//
extern "C"
JNIEXPORT void JNICALL
Java_com_layla_LlamaCpp_llama_1init_1backend(JNIEnv *env, jclass clazz) {
llama_init_backend();
}