mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
19 lines
584 B
XML
19 lines
584 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project default="makeTestApps">
|
|
|
|
<!-- properties -->
|
|
<property name="bin_dir" location="./data/launch/bin"/>
|
|
<property name="src_dir" location="./data/launch/src"/>
|
|
|
|
<!-- targets -->
|
|
<target name="makeTestApps" description="Create the binaries for the test applications">
|
|
<exec executable="make" dir="${src_dir}" />
|
|
</target>
|
|
|
|
<target name="clean" description="Delete Test Applications">
|
|
<delete>
|
|
<fileset dir="${bin_dir}" includes="*"/>
|
|
</delete>
|
|
</target>
|
|
|
|
</project>
|