2019-01-04 12:49:36 +00:00
|
|
|
<?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">
|
2019-08-03 11:17:58 -04:00
|
|
|
<exec executable="yarn" dir="./debug-servers" failifexecutionfails="true">
|
|
|
|
<arg value="upgrade"/>
|
|
|
|
<arg value="cdt-gdb-adapter"/>
|
|
|
|
</exec>
|
2019-01-04 12:49:36 +00:00
|
|
|
<exec executable="yarn" dir="./debug-servers" failifexecutionfails="true" />
|
|
|
|
</target>
|
|
|
|
</project>
|