small update

This commit is contained in:
Joseph Aquino 2025-09-25 08:31:46 -04:00
parent 4030b010b5
commit 7018dc7b3d
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -392,5 +392,6 @@ Engine-Core/intermediate-files
Editor/bin Editor/bin
Editor/intermediate-files Editor/intermediate-files
Game/bin Game/bin
build/
imgui.ini imgui.ini

View File

@ -38,6 +38,7 @@ project "Engine-Core"
includedirs includedirs
{ {
"src", "src",
sfmldir .. "/include",
include_dir, include_dir,
imguidir imguidir
} }
@ -93,7 +94,6 @@ project "Engine-Core"
defines {"PLATFORM_LINUX"} defines {"PLATFORM_LINUX"}
targetdir (corelibdir) targetdir (corelibdir)
objdir (intdir) objdir (intdir)
libdirs{sfmldir .. "/lib/linux"}
includedirs includedirs
{ {
"src", "src",

View File

@ -1,7 +1,7 @@
#! /bin/bash #! /bin/bash
if [ -z "$1" ] || [ $# -eq 0 ] if [ -z "$1" ] || [ $# -eq 0 ]
then then
make config=debug clean && make config=release clean make config=Debug clean && make config=Release clean
else else
make config=$1 clean make config=$1 clean
fi fi