当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 72

ShawnFengShuanLong / MMORPG
关闭

forked from 电霸儿 / MMORPG
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.xml 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
电霸儿 提交于 2018-03-11 22:26 . 11
<?xml version="1.0"?>
<project name="animalkingdom" basedir="." default="test">
<property name="dist" location="${basedir}/dist" />
<property name="serverengine.dir" value="${basedir}/ServerEngine" />
<property name="world.dir" value="${basedir}/AnimalKingdomWorld" />
<property name="allWorld.dir" value="${basedir}/World" />
<property name="cross.dir" value="${basedir}/Crossdomain" />
<target name="build-serverengine" depends="">
<ant antfile="buildServerEngine.xml" dir="${serverengine.dir}">
</ant>
</target>
<target name="build-world" depends="">
<ant antfile="buildWorld.xml" dir="${world.dir}">
</ant>
</target>
<target name="build-allWorld" depends="">
<ant antfile="buildWorld.xml" dir="${allWorld.dir}">
</ant>
</target>
<target name="build-cross" depends="">
<ant antfile="buildCross.xml" dir="${cross.dir}">
</ant>
</target>
<target name="cleandist" description="clean up">
<delete dir="${dist}/allWorld" />
<delete dir="${dist}/world" />
<delete dir="${dist}/cross" />
<delete dir="${dist}/asset" />
</target>
<target name="test">
<antcall target="cleandist" />
<antcall target="build-serverengine" />
<antcall target="build-world" />
<antcall target="build-allWorld" />
<antcall target="build-cross" />
<mkdir dir="${dist}" />
<copydir dest="${dist}/world" src="${world.dir}/dist/world"></copydir>
<copydir dest="${dist}/allWorld" src="${allWorld.dir}/dist/allWorld"></copydir>
<copydir dest="${dist}/cross" src="${cross.dir}/dist/cross"></copydir>
<copydir dest="${dist}/asset" src="${basedir}/Game/src/asset"></copydir>
</target>
</project>
Java
1
https://gitee.com/shawnfengshuanlong/threecss-mmorpg.git
git@gitee.com:shawnfengshuanlong/threecss-mmorpg.git
shawnfengshuanlong
threecss-mmorpg
MMORPG
master

搜索帮助