aboutsummaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2020-09-27 00:32:14 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-30 02:16:50 +0300
commit35656fe0e88dcc5334cc9b7e3234df2ffac5d1d3 (patch)
tree01a90a52be5a59a434bd0663a2c2c21bfdeec8be /premake5.lua
parent35d7591defb352c2af49af0d6e0d3340e7b59672 (diff)
Add target arm64
# Conflicts: # premake5.lua
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 478ac18d..b61a9c4c 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -47,6 +47,8 @@ function getarch(a)
return 'amd64'
elseif a == 'ARM' then
return 'arm'
+ elseif a == 'ARM64' then
+ return 'arm64'
end
return a
end
@@ -75,6 +77,7 @@ workspace "reVC"
"linux-x86-librw_gl3_glfw-oal",
"linux-amd64-librw_gl3_glfw-oal",
"linux-arm-librw_gl3_glfw-oal",
+ "linux-arm64-librw_gl3_glfw-oal",
}
filter { "system:bsd" }