From 456921e66bac3793c64ae8dfad0dd86964a1531e Mon Sep 17 00:00:00 2001 From: Sara Date: Tue, 16 Sep 2025 19:45:56 +0200 Subject: [PATCH] fix: premake5 now adds include/ to build ipv vendor/ --- premake5.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 6120e30..d592297 100644 --- a/premake5.lua +++ b/premake5.lua @@ -8,7 +8,7 @@ project "Dice" cdialect "c23" location "build/" files { "src/**.c" } - includedirs { "vendor/" } + includedirs { "include/" } links { "m", "stdc++", "SDL3", "SDL3_ttf", "SDL3_image" } buildoptions { "-Wall" } targetdir "bin/"