blob: c673b2636821a5acaf19db389c86a3265fff1894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# cd projectdir
export XMAKE_PROGRAM_DIR=`pwd`/xmake
if [ -f `pwd`/core/build/xmake ]; then
alias xmake=`pwd`/core/build/xmake
export XMAKE_PROGRAM_FILE=`pwd`/core/build/xmake
else
alias xmake=`pwd`/core/src/demo/demo.b
export XMAKE_PROGRAM_FILE=`pwd`/core/src/demo/demo.b
fi
alias xrepo=`pwd`/scripts/xrepo.sh
xmake --version
xmake l xmake.programdir
xmake l xmake.programfile
|