Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions app/display/waterfallplot/build.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
<project default="app-display-waterfallplot">
<import file="../../dependencies/ant_settings.xml"/>
<import file="../../../dependencies/ant_settings.xml"/>

<target name="app-display-waterfallplot">
<mkdir dir="${classes}"/>
<javac destdir="${classes}" debug="${debug}">
<src path="${src}"/>
<classpath>
<path refid="app-classpath"/>
<pathelement path="../model/${build}/app-display-model-${version}.jar"/>
<pathelement path="../representation/${build}/app-display-representation-${version}.jar"/>
<pathelement path="../representation-javafx/${build}/app-display-representation-javafx-${version}.jar"/>
<pathelement path="../runtime/${build}/app-display-runtime-${version}.jar"/>
<pathelement path="../../databrowser/${build}/app-databrowser-${version}.jar"/>
<pathelement path="../../rtplot/${build}/app-rtplot-${version}.jar"/>
</classpath>
</javac>

<target name="app-display-waterfallplot" depends="compile-app">
<jar destfile="${build}/app-display-waterfallplot-${version}.jar">
<fileset dir="${classes}"/>
<fileset dir="${resources}"/>
</jar>
</target>

</project>
2 changes: 2 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<ant target="clean" dir="app/display/convert-edm"/>
<ant target="clean" dir="app/display/adapters"/>
<ant target="clean" dir="app/display/thumbwheel"/>
<ant target="clean" dir="app/display/waterfallplot"/>
<ant target="clean" dir="app/scan/model"/>
<ant target="clean" dir="app/scan/client"/>
<ant target="clean" dir="app/scan/ui"/>
Expand Down Expand Up @@ -138,6 +139,7 @@
<ant dir="app/display/convert-edm"/>
<ant dir="app/display/adapters"/>
<ant dir="app/display/thumbwheel"/>
<ant dir="app/display/waterfallplot"/>
<ant dir="app/scan/model"/>
<ant dir="app/scan/client"/>
<ant dir="app/scan/ui"/>
Expand Down