diff options
| author | erorcun <erayorcunus@gmail.com> | 2020-11-16 15:20:20 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 15:20:20 +0300 |
| commit | 72c0a6a68099fdc125381e21ef779eb9dc102304 (patch) | |
| tree | 48934ff366d94d738a65fd2f68b2a2b906dd7985 /premake5.lua | |
| parent | small fix (diff) | |
| parent | Use CLOCK_MONOTONIC_FAST when available (FreeBSD) (diff) | |
| download | re3-72c0a6a68099fdc125381e21ef779eb9dc102304.tar.gz | |
Merge pull request #723 from myfreeweb/master
Fixes for Wayland (HiDPI and mouse lock) support, FreeBSD
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua index 4e4417bf..51518a98 100644 --- a/premake5.lua +++ b/premake5.lua @@ -92,7 +92,10 @@ workspace "re3" filter { "system:bsd" }
platforms {
- "bsd-amd64-librw_gl3_glfw-oal"
+ "bsd-x86-librw_gl3_glfw-oal",
+ "bsd-amd64-librw_gl3_glfw-oal",
+ "bsd-arm-librw_gl3_glfw-oal",
+ "bsd-arm64-librw_gl3_glfw-oal"
}
filter { "system:macosx" }
|
