From 74f6d2fd16bbf7cbd49c31e2f6462380eac22c69 Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 9 Jan 2025 21:58:37 +0100 Subject: [PATCH] feat: added build inputs and outputs to premake --- premake5.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/premake5.lua b/premake5.lua index 8487668..88faef4 100644 --- a/premake5.lua +++ b/premake5.lua @@ -7,6 +7,8 @@ project "game" language "C++" cppdialect "C++20" location "build/" + buildinputs "../resources/**.*" + buildoutputs "%{cfg.targetdir}/resources/**.*" postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}" files { "src/**.cpp" } includedirs { "src/" }