feat: added dependencies to premake5

This commit is contained in:
Sara 2025-09-16 13:35:09 +02:00
parent 6e178d23ef
commit 9ffee27be6

View file

@ -8,9 +8,11 @@ project "Dice"
cdialect "c23"
location "build/"
files { "src/**.c" }
links { "m", "stdc++" }
includedirs { "vendor/" }
links { "m", "stdc++", "SDL3", "SDL3_ttf", "SDL3_image" }
buildoptions { "-Wall" }
targetdir "bin/"
postbuildcommands { "{COPYDIR} %{wks.location}/assets/ %{cfg.targetdir}/assets/" }
filter "configurations:debug"
defines { "DEBUG" }
symbols "On"