summaryrefslogtreecommitdiff
path: root/tests/projects/android/native_app/raylib_basic/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/android/native_app/raylib_basic/xmake.lua')
-rw-r--r--tests/projects/android/native_app/raylib_basic/xmake.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/projects/android/native_app/raylib_basic/xmake.lua b/tests/projects/android/native_app/raylib_basic/xmake.lua
new file mode 100644
index 000000000..50886764d
--- /dev/null
+++ b/tests/projects/android/native_app/raylib_basic/xmake.lua
@@ -0,0 +1,19 @@
+add_rules("mode.debug", "mode.release")
+
+add_requires("raylib 5.5.0")
+
+target("raydemo_basic")
+ set_kind("binary")
+ set_languages("c++17")
+ add_files("src/main.cpp")
+ 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.basic",
+ logcat_filters = {"raydemo_basic", "raylib"}
+ })