From a221a5472e9d819d5284da6a65c45bee7d18dcb2 Mon Sep 17 00:00:00 2001 From: Joseph Aquino Date: Tue, 30 Dec 2025 21:51:12 -0500 Subject: [PATCH] build system update --- ecc.sh | 6 +++--- project.lua | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ecc.sh b/ecc.sh index 323e448..555ded6 100755 --- a/ecc.sh +++ b/ecc.sh @@ -1,7 +1,7 @@ #! /bin/bash if [ -z "$1" ] || [ $# -eq 0 ] then - ./vendor/premake5/premake5 --config=Debug ecc + ./third-party/premake5/premake5 --config=Debug ecc else - ./vendor/premake5/premake5 --config=$1 ecc -fi \ No newline at end of file + ./third-party/premake5/premake5 --config=$1 ecc +fi diff --git a/project.lua b/project.lua index 82da0ab..99dd9dd 100644 --- a/project.lua +++ b/project.lua @@ -1,9 +1,11 @@ local m = {} local scriptdir = path.getabsolute(path.getdirectory(_SCRIPT)) + local sfml = require("third-party/build-sfml") -local imguisfml = require("third-party/build-imgui-sfml") local imgui = require("third-party/build-imgui") +local imguisfml = require("third-party/build-imgui-sfml") + function m.generateproject(bindir, intdir) project "snake"