summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorAndrew Udvare <audvare@gmail.com>2020-09-30 02:39:18 +0200
committerAndrew Udvare <audvare@gmail.com>2020-09-30 21:40:28 +0200
commit01ea7801fdd51852a4312350cd6c8bf91efe8666 (patch)
treee30f6eca1dd4d0f512ceb4fa7d36e2b8dd2fd60d /premake5.lua
parentFix more (diff)
downloadre3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar.gz
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar.bz2
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar.lz
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar.xz
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.tar.zst
re3-01ea7801fdd51852a4312350cd6c8bf91efe8666.zip
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 881035ef..36388a1e 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -85,6 +85,12 @@ workspace "re3"
"bsd-amd64-librw_gl3_glfw-oal"
}
+ filter { "system:macosx" }
+ platforms {
+ "macosx-amd64-librw_gl3_glfw-oal",
+ "macosx-arm64-librw_gl3_glfw-oal",
+ }
+
filter "configurations:Debug"
defines { "DEBUG" }
@@ -100,6 +106,9 @@ workspace "re3"
filter { "platforms:bsd*" }
system "bsd"
+
+ filter { "platforms:macosx*" }
+ system "macosx"
filter { "platforms:*x86*" }
architecture "x86"
@@ -110,6 +119,12 @@ workspace "re3"
filter { "platforms:*arm*" }
architecture "ARM"
+ filter { "platforms:macosx-arm64-*" }
+ buildoptions { "-target", "arm64-apple-macos11", "-std=gnu++14" }
+
+ filter { "platforms:macosx-amd64-*" }
+ buildoptions { "-target", "x86_64-apple-macos10.12", "-std=gnu++14" }
+
filter { "platforms:*librw_d3d9*" }
defines { "RW_D3D9" }
if(not _OPTIONS["with-librw"]) then
@@ -162,6 +177,13 @@ project "librw"
filter "platforms:bsd*"
includedirs { "/usr/local/include" }
libdirs { "/usr/local/lib" }
+
+ filter "platforms:macosx*"
+ -- Support MacPorts and Homebrew
+ includedirs { "/opt/local/include" }
+ includedirs {"/usr/local/include" }
+ libdirs { "/opt/local/lib" }
+ libdirs { "/usr/local/lib" }
filter "platforms:*RW33*"
flags { "ExcludeFromBuild" }
@@ -276,6 +298,11 @@ project "re3"
filter "platforms:bsd*oal"
links { "openal", "mpg123", "sndfile", "pthread" }
+
+ filter "platforms:macosx*oal"
+ links { "openal", "mpg123", "sndfile", "pthread" }
+ includedirs { "/usr/local/opt/openal-soft/include" }
+ libdirs { "/usr/local/opt/openal-soft/lib" }
if _OPTIONS["with-opus"] then
filter {}
@@ -329,3 +356,11 @@ project "re3"
links { "GL", "GLEW", "glfw", "sysinfo" }
includedirs { "/usr/local/include" }
libdirs { "/usr/local/lib" }
+
+ filter "platforms:macosx*gl3_glfw*"
+ links { "GLEW", "glfw" }
+ linkoptions { "-framework OpenGL" }
+ includedirs { "/opt/local/include" }
+ includedirs { "/usr/local/include" }
+ libdirs { "/opt/local/lib" }
+ libdirs { "/usr/local/lib" }