diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-02-14 21:13:00 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-02-14 21:13:00 -0500 |
commit | a7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795 (patch) | |
tree | 992b7bb18cde0f7674e79f8e16bb2b8680b2dde8 /src | |
parent | 5c61eb11703b92270592507b6fd3ae27ae6f76a5 (diff) | |
download | lite-xl-plugin-manager-a7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795.tar.gz lite-xl-plugin-manager-a7e9c5d31b9fdd3c8ab1c4ac28efac3f808ff795.zip |
Added in android builds.
Diffstat (limited to 'src')
-rw-r--r-- | src/lpm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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__ |