diff options
Diffstat (limited to 'tests/projects/android/native_app/xmake.lua')
| -rw-r--r-- | tests/projects/android/native_app/xmake.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/projects/android/native_app/xmake.lua b/tests/projects/android/native_app/xmake.lua index e959fdf32..587994928 100644 --- a/tests/projects/android/native_app/xmake.lua +++ b/tests/projects/android/native_app/xmake.lua @@ -6,6 +6,7 @@ target("raydemo_android") 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", @@ -13,5 +14,6 @@ target("raydemo_android") android_res = "android/res", keystore = "android/debug.jks", keystore_pass = "123456", - package_name = "com.raylib.demo" + package_name = "com.raylib.demo", + logcat_filters = {"raydemo_android", "raylib"} }) |
