minor build update

This commit is contained in:
Joseph Aquino 2025-12-31 22:14:04 -05:00
parent 64bf975f6c
commit 0e89a8d0c6
1 changed files with 8 additions and 5 deletions

View File

@ -20,17 +20,20 @@ project "snake"
debugdir (rootdir) debugdir (rootdir)
objdir (intdir) objdir (intdir)
-- link order matters on GCC/Clang
imgui.link() files
imguisfml.link() {
sfml.link() path.join(rootdir, "src/**.cpp"),
path.join(rootdir, "include/**.h"),
path.join(rootdir, "include/**.hpp"),
}
includedirs includedirs
{ {
path.join(rootdir, "src"), path.join(rootdir, "src"),
path.join(rootdir, "include"), path.join(rootdir, "include"),
} }
-- link order matters on GCC/Clang -- link order matters on GCC/Clang
imgui.link() imgui.link()
imguisfml.link() imguisfml.link()