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/intermediate-files
Game/bin
build/
imgui.ini

View File

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

View File

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