From 7f4eaf512df69e20e6c0a9369df6b87b0ba18067 Mon Sep 17 00:00:00 2001 From: qudix <17361645+qudix@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:21:29 -0500 Subject: [PATCH] fix: xmake | after_build not running install (#289) --- xmake-extra.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake-extra.lua b/xmake-extra.lua index d8b028fd..576559f6 100644 --- a/xmake-extra.lua +++ b/xmake-extra.lua @@ -209,5 +209,5 @@ rule("commonlibsf.plugin") if srcfiles and #srcfiles > 0 and dstfiles and #dstfiles > 0 then task.run("install") end - end, { files = project.allfiles(), changed = target:is_rebuilt()}) + end, { changed = target:is_rebuilt(), files = { target:targetfile() } }) end)