build system update
This commit is contained in:
parent
b5011e7db1
commit
a221a5472e
4
ecc.sh
4
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
|
||||
./third-party/premake5/premake5 --config=$1 ecc
|
||||
fi
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue