aboutsummaryrefslogtreecommitdiff
path: root/src/lpm.c
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-02-14 21:13:00 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-02-14 21:13:00 -0500
commita7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795 (patch)
tree992b7bb18cde0f7674e79f8e16bb2b8680b2dde8 /src/lpm.c
parent5c61eb11703b92270592507b6fd3ae27ae6f76a5 (diff)
downloadlite-xl-plugin-manager-a7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795.tar.gz
lite-xl-plugin-manager-a7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795.zip
Added in android builds.
Diffstat (limited to 'src/lpm.c')
-rw-r--r--src/lpm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lpm.c b/src/lpm.c
index c0104cd..8dd2dff 100644
--- a/src/lpm.c
+++ b/src/lpm.c
@@ -1065,6 +1065,8 @@ static const luaL_Reg system_lib[] = {
#ifndef ARCH_PLATFORM
#if _WIN32
#define ARCH_PLATFORM "windows"
+ #elif __ANDROID__
+ #define ARCH_PLATFORM "android"
#elif __linux__
#define ARCH_PLATFORM "linux"
#elif __APPLE__