blob: d8472d4ae0973cc722138de4e9898bd61fa34712 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project default="BuildDebugServers">
<!-- Wrap running yarn in an ant task so that we don't have to specify absolute path to yarn in external tool builder. -->
<target name="BuildDebugServers" description="Build the Node Debug Servers with yarn">
<exec executable="yarn" dir="./debug-servers" failifexecutionfails="true">
<arg value="upgrade"/>
<arg value="cdt-gdb-adapter"/>
</exec>
<exec executable="yarn" dir="./debug-servers" failifexecutionfails="true" />
</target>
</project>