From edc85e2a0cb14e9b9211071ad7e6abbf372919a4 Mon Sep 17 00:00:00 2001 From: Guilherme Werner Date: Sun, 3 Dec 2023 17:48:27 -0300 Subject: [PATCH] Update premake5.lua --- examples/premake5.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/examples/premake5.lua b/examples/premake5.lua index 80c8da19..50422b73 100644 --- a/examples/premake5.lua +++ b/examples/premake5.lua @@ -77,7 +77,6 @@ project "example" postbuildcommands { - "{COPYFILE} ../vendor/libhv/lib/%{cfg.platform:gsub('-', '/')}/hv.dll %{cfg.targetdir}/hv.dll", } filter { "platforms:mac-*" } @@ -102,6 +101,10 @@ project "example" { } + postbuildcommands + { + } + filter { "platforms:linux-*" } system "linux" @@ -123,6 +126,10 @@ project "example" { } + postbuildcommands + { + } + filter { "platforms:android-*" } system "android" @@ -144,6 +151,10 @@ project "example" { } + postbuildcommands + { + } + filter { "platforms:ios-*" } system "ios" systemversion "13.0"