From 7018dc7b3da396e69c96b644125e6585ef6f1e04 Mon Sep 17 00:00:00 2001 From: Joseph Aquino Date: Thu, 25 Sep 2025 08:31:46 -0400 Subject: [PATCH] small update --- .gitignore | 1 + Engine-Core/Build-Core.lua | 2 +- clean.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4ef6152..c1b7c03 100644 --- a/.gitignore +++ b/.gitignore @@ -392,5 +392,6 @@ Engine-Core/intermediate-files Editor/bin Editor/intermediate-files Game/bin +build/ imgui.ini \ No newline at end of file diff --git a/Engine-Core/Build-Core.lua b/Engine-Core/Build-Core.lua index a4b5258..46472cf 100644 --- a/Engine-Core/Build-Core.lua +++ b/Engine-Core/Build-Core.lua @@ -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", diff --git a/clean.sh b/clean.sh index bd82615..d726eae 100755 --- a/clean.sh +++ b/clean.sh @@ -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 \ No newline at end of file