Update LOVE submodule.

This commit is contained in:
Miku AuahDark
2021-11-02 17:58:57 +08:00
parent ba0f568f15
commit 80078b3046
2 changed files with 3 additions and 1 deletions
@@ -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.