Add update thrust curves & database ant task

This commit is contained in:
SiboVG 2023-01-26 19:44:28 +01:00
parent 7cbbae2a4a
commit 33c342928f
2 changed files with 15 additions and 1 deletions

View File

@ -64,6 +64,19 @@
<ant dir="swing" target="unittest-no-junit-report" inheritAll="false" />
</target>
<target name="serialize-motors-core">
<ant dir="core" target="serialize-motors" inheritAll="false" />
</target>
<!-- UPDATE -->
<target name="update" depends="serialize-motors-core">
<exec dir="." executable="git">
<arg value="submodule"/>
<arg value="update"/>
<arg value="--remote"/>
</exec>
</target>
<!-- CHECK -->
<target name="check" depends="checktodo,checkascii"/>

View File

@ -76,7 +76,8 @@
<fileset dir="${basedir}/.." includes="LICENSE.TXT README.md ChangeLog ReleaseNotes.md fileformat.txt" />
</jar>
</target>
<!-- Update thrust curves -->
<target name="serialize-motors" depends="build" description="Preprocess the motor files into serialized form">
<java classname="net.sf.openrocket.thrustcurve.SerializeThrustcurveMotors"
fork="true"