From 80078b304667f06becbdab570b0b4c50a1394b73 Mon Sep 17 00:00:00 2001 From: Miku AuahDark Date: Tue, 2 Nov 2021 17:58:57 +0800 Subject: [PATCH] Update LOVE submodule. --- love/src/jni/love | 2 +- love/src/jni/lua-modules/lua-modules-readme.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/love/src/jni/love b/love/src/jni/love index 216d5ca4..b79b99bb 160000 --- a/love/src/jni/love +++ b/love/src/jni/love @@ -1 +1 @@ -Subproject commit 216d5ca4b2ab04bd765daa4c23c00b81b4aedf08 +Subproject commit b79b99bbaa60fb283d160782e5b31f953b43760c diff --git a/love/src/jni/lua-modules/lua-modules-readme.txt b/love/src/jni/lua-modules/lua-modules-readme.txt index 8e9925fa..668c06f2 100644 --- a/love/src/jni/lua-modules/lua-modules-readme.txt +++ b/love/src/jni/lua-modules/lua-modules-readme.txt @@ -3,6 +3,8 @@ This folder should contain external Lua C modules that will be shipped along wit Each folder must contains: * Android.mk describing how to build the external Lua C module. The LOCAL_MODULE_FILENAME must be set accordingly as ndk-build appends "lib" prefix from LOCAL_MODULE by default. + For Lua includes and libraries, simply link the native library with "liblove". + Caveat: If the library is meant to be loaded as require("my.library") then you MUST set LOCAL_MODULE_FILENAME to my.library (with dots) * If your module interacts with Java-side, a file java.txt must contain where it should look Java source files. Example, if you have src/java/your/package/name/MyFile.java, then you need to write "src/java" in java.txt. If this file is absent, then your Java-side code will not be compiled along.