axmol/tools/jenkins-scripts/slave-scripts/templates/linux-build.sh

14 lines
305 B
Bash
Raw Normal View History

2019-11-23 20:27:39 +08:00
#!/bin/bash
2021-05-18 16:40:30 +08:00
adxe_cmd=tools/console/bin/adxe
$adxe_cmd new -l $1
2019-11-23 20:27:39 +08:00
if [ $1 = "cpp" ]; then
projectname="MyCppGame"
elif [ $1 = "lua" ]; then
projectname="MyLuaGame"
elif [ $1 = "js" ]; then
projectname="MyJSGame"
fi
2021-05-18 16:40:30 +08:00
$adxe_cmd compile -p linux -s $projectname -m release -j4 --compile-script 0