Update premake5.lua

This commit is contained in:
Guilherme Werner
2023-12-03 17:48:27 -03:00
parent 57bc975c85
commit edc85e2a0c

View File

@ -77,7 +77,6 @@ project "example"
postbuildcommands postbuildcommands
{ {
"{COPYFILE} ../vendor/libhv/lib/%{cfg.platform:gsub('-', '/')}/hv.dll %{cfg.targetdir}/hv.dll",
} }
filter { "platforms:mac-*" } filter { "platforms:mac-*" }
@ -102,6 +101,10 @@ project "example"
{ {
} }
postbuildcommands
{
}
filter { "platforms:linux-*" } filter { "platforms:linux-*" }
system "linux" system "linux"
@ -123,6 +126,10 @@ project "example"
{ {
} }
postbuildcommands
{
}
filter { "platforms:android-*" } filter { "platforms:android-*" }
system "android" system "android"
@ -144,6 +151,10 @@ project "example"
{ {
} }
postbuildcommands
{
}
filter { "platforms:ios-*" } filter { "platforms:ios-*" }
system "ios" system "ios"
systemversion "13.0" systemversion "13.0"