From f740cad81854d7bf3aaee420c717eace8be3f367 Mon Sep 17 00:00:00 2001 From: Robinson Date: Thu, 3 Mar 2022 00:13:49 +0100 Subject: [PATCH] Added standard name --- src/dorkbox/os/OSType.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dorkbox/os/OSType.kt b/src/dorkbox/os/OSType.kt index 48c65b8..86f62a8 100644 --- a/src/dorkbox/os/OSType.kt +++ b/src/dorkbox/os/OSType.kt @@ -44,9 +44,11 @@ enum class OSType(name: String, vararg libraryNames: String) { LinuxArm64("linux_arm8_hf", ".so"); + val standardName: String val libraryNames: Array init { + this.standardName = name this.libraryNames = libraryNames }