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"