mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-22 00:15:25 +02:00
20 lines
584 B
XML
20 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>
|