• R/O
  • SSH
  • HTTPS

chaplet: 提交


Commit MetaInfo

修訂39 (tree)
時間2007-07-12 22:58:31
作者koe

Log Message

N◎VAプラグインのビルドを追加

Change Summary

差異

--- chaplet/trunk/build.xml (revision 38)
+++ chaplet/trunk/build.xml (revision 39)
@@ -1,9 +1,11 @@
11 <project name="chaplet" default="buildall" basedir=".">
2- <property name="build.version" value="0.2"/>
2+ <property name="build.version" value="0.3"/>
33 <property name="build.src.core" value="src/core"/>
44 <property name="build.bin.core" value="bin/core"/>
55 <property name="build.src.dx" value="src/dx"/>
66 <property name="build.bin.dx" value="bin/dx"/>
7+ <property name="build.src.nova" value="src/nova"/>
8+ <property name="build.bin.nova" value="bin/nova"/>
79 <property name="build.lib.java" value="lib/java"/>
810 <property name="build.lib.test" value="lib/test"/>
911 <property name="build.resource" value="resource"/>
@@ -21,7 +23,7 @@
2123 <target name="buildall" depends="build">
2224 </target>
2325
24- <target name="makejar" depends="makejar.bootstrap,makejar.core,makejar.dx"
26+ <target name="makejar" depends="makejar.bootstrap,makejar.core,makejar.dx,makejar.nova"
2527 description="jarファイルを作成する">
2628 </target>
2729
@@ -54,9 +56,21 @@
5456 </jar>
5557 </target>
5658
59+ <target name="makejar.nova">
60+ <delete file="${build.dest}/chaplet/lib/chaplet-nova.jar"/>
61+ <jar destfile="${build.dest}/chaplet/lib/chaplet-nova.jar"
62+ manifest="manifest/manifest-nova.mf">
63+ <fileset dir="${build.bin.nova}">
64+ <include name="**/*.class"/>
65+ <include name="**/resources/**/*"/>
66+ <exclude name="**/*Test.class"/>
67+ </fileset>
68+ </jar>
69+ </target>
70+
5771 <target name="makejar.bootstrap">
5872 <delete file="${build.dest}/chaplet.jar"/>
59- <jar destfile="${build.dest}/chaplet.jar" manifest="manifest/manifest-core.mf">
73+ <jar destfile="${build.dest}/chaplet/chaplet.jar" manifest="manifest/manifest-core.mf">
6074 <fileset dir="${build.bin.core}">
6175 <include name="jp/sf/chaplet/bootstrap/*.class"/>
6276 <exclude name="**/*Test.class"/>
@@ -82,7 +96,7 @@
8296 </copy>
8397 <delete file="${build.dest}/chaplet/chaplet.exe" failonerror="false"></delete>
8498 <exec executable="${exewrap.path}" dir="${build.dest}/chaplet">
85- <arg line="-g -v ${build.version} -o chaplet.exe ../chaplet.jar"/>
99+ <arg line="-g -v ${build.version} -o chaplet.exe chaplet.jar"/>
86100 </exec>
87101 <zip destfile="${release.zip}">
88102 <fileset dir="${build.dest}/chaplet">
Show on old repository browser