diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 23:05:26 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 23:05:26 +0200 |
commit | d781db6c0f669eaccecee246260290aa20f70020 (patch) | |
tree | fc963b1e8f3c127a49095a127850bfc1cd09111e /premake5.lua | |
parent | Mission audio cleanup + sound pause (diff) | |
parent | Use CPad functions to check key states in script loader (diff) | |
download | re3-d781db6c0f669eaccecee246260290aa20f70020.tar re3-d781db6c0f669eaccecee246260290aa20f70020.tar.gz re3-d781db6c0f669eaccecee246260290aa20f70020.tar.bz2 re3-d781db6c0f669eaccecee246260290aa20f70020.tar.lz re3-d781db6c0f669eaccecee246260290aa20f70020.tar.xz re3-d781db6c0f669eaccecee246260290aa20f70020.tar.zst re3-d781db6c0f669eaccecee246260290aa20f70020.zip |
Diffstat (limited to 'premake5.lua')
-rw-r--r-- | premake5.lua | 40 |
1 files changed, 33 insertions, 7 deletions
diff --git a/premake5.lua b/premake5.lua index 0da1b8a4..f8970b32 100644 --- a/premake5.lua +++ b/premake5.lua @@ -154,12 +154,18 @@ workspace "reLCS" filter { "platforms:*arm*" } architecture "ARM" - filter { "platforms:macosx-arm64-*" } + filter { "platforms:macosx-arm64-*", "files:**.cpp"} buildoptions { "-target", "arm64-apple-macos11", "-std=gnu++14" } - filter { "platforms:macosx-amd64-*" } + filter { "platforms:macosx-arm64-*", "files:**.c"} + buildoptions { "-target", "arm64-apple-macos11" } + + filter { "platforms:macosx-amd64-*", "files:**.cpp"} buildoptions { "-target", "x86_64-apple-macos10.12", "-std=gnu++14" } + filter { "platforms:macosx-amd64-*", "files:**.c"} + buildoptions { "-target", "x86_64-apple-macos10.12" } + filter { "platforms:*librw_d3d9*" } defines { "RW_D3D9" } if(not _OPTIONS["with-librw"]) then @@ -219,13 +225,19 @@ project "librw" includedirs { "/usr/local/include" } libdirs { "/usr/local/lib" } - filter "platforms:macosx*" - -- Support MacPorts and Homebrew + -- Support MacPorts and Homebrew + filter "platforms:macosx-arm64-*" + includedirs { "/opt/local/include" } + includedirs {"/opt/homebrew/include" } + libdirs { "/opt/local/lib" } + libdirs { "/opt/homebrew/lib" } + + filter "platforms:macosx-amd64-*" includedirs { "/opt/local/include" } includedirs {"/usr/local/include" } libdirs { "/opt/local/lib" } libdirs { "/usr/local/lib" } - + filter "platforms:*gl3_glfw*" staticruntime "off" @@ -386,6 +398,12 @@ project "reLCS" filter "platforms:macosx*oal" links { "openal", "mpg123", "sndfile", "pthread" } + + filter "platforms:macosx-arm64-*oal" + includedirs { "/opt/homebrew/opt/openal-soft/include" } + libdirs { "/opt/homebrew/opt/openal-soft/lib" } + + filter "platforms:macosx-amd64-*oal" includedirs { "/usr/local/opt/openal-soft/include" } libdirs { "/usr/local/opt/openal-soft/lib" } @@ -437,10 +455,18 @@ project "reLCS" includedirs { "/usr/local/include" } libdirs { "/usr/local/lib" } - filter "platforms:macosx*gl3_glfw*" + filter "platforms:macosx-arm64-*gl3_glfw*" links { "glfw" } linkoptions { "-framework OpenGL" } includedirs { "/opt/local/include" } - includedirs { "/usr/local/include" } + includedirs {"/opt/homebrew/include" } + libdirs { "/opt/local/lib" } + libdirs { "/opt/homebrew/lib" } + + filter "platforms:macosx-amd64-*gl3_glfw*" + links { "glfw" } + linkoptions { "-framework OpenGL" } + includedirs { "/opt/local/include" } + includedirs {"/usr/local/include" } libdirs { "/opt/local/lib" } libdirs { "/usr/local/lib" } |