feat: added dependencies to premake5
This commit is contained in:
parent
6e178d23ef
commit
9ffee27be6
|
@ -8,9 +8,11 @@ project "Dice"
|
||||||
cdialect "c23"
|
cdialect "c23"
|
||||||
location "build/"
|
location "build/"
|
||||||
files { "src/**.c" }
|
files { "src/**.c" }
|
||||||
links { "m", "stdc++" }
|
includedirs { "vendor/" }
|
||||||
|
links { "m", "stdc++", "SDL3", "SDL3_ttf", "SDL3_image" }
|
||||||
buildoptions { "-Wall" }
|
buildoptions { "-Wall" }
|
||||||
targetdir "bin/"
|
targetdir "bin/"
|
||||||
|
postbuildcommands { "{COPYDIR} %{wks.location}/assets/ %{cfg.targetdir}/assets/" }
|
||||||
filter "configurations:debug"
|
filter "configurations:debug"
|
||||||
defines { "DEBUG" }
|
defines { "DEBUG" }
|
||||||
symbols "On"
|
symbols "On"
|
||||||
|
|
Loading…
Reference in a new issue