diff options
| author | ruki <[email protected]> | 2025-12-17 00:35:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-17 00:35:47 +0800 |
| commit | 838e5387f94de362bbb58cff2d93ae193b72689f (patch) | |
| tree | db88434daab1cd053bb4f9af38f7c87c99d08734 /tests/projects/android/native_app/raylib_custom_glue/xmake.lua | |
| parent | e9cc5c5f4627b2df658310371e43557ae00c2e1e (diff) | |
add custom glue test
Diffstat (limited to 'tests/projects/android/native_app/raylib_custom_glue/xmake.lua')
| -rw-r--r-- | tests/projects/android/native_app/raylib_custom_glue/xmake.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/projects/android/native_app/raylib_custom_glue/xmake.lua b/tests/projects/android/native_app/raylib_custom_glue/xmake.lua new file mode 100644 index 000000000..3b112f8fe --- /dev/null +++ b/tests/projects/android/native_app/raylib_custom_glue/xmake.lua @@ -0,0 +1,20 @@ +add_rules("mode.debug", "mode.release") + +add_requires("raylib 5.5.0") + +target("raydemo_custom_glue") + set_kind("binary") + set_languages("c++17") + add_files("src/main.cpp", "src/android_native_app_glue.c") + add_syslinks("log") + add_packages("raylib") + add_rules("android.native_app", { + android_sdk_version = "35", + android_manifest = "android/AndroidManifest.xml", + android_res = "android/res", + keystore = "android/debug.jks", + keystore_pass = "123456", + package_name = "com.raylib.custom_glue", + native_app_glue = false, + logcat_filters = {"raydemo_custom_glue", "raylib"} + }) |
