1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-02 05:03:36 +02:00
cdt/debug/org.eclipse.cdt.debug.dap/BuildDebugServers.xml
Jonah Graham 6c34f9bad5 Bug 542488: JTAG debug support based on DAP remote debugging
Change-Id: I035ca6341b8e1dc7273f53da80eb281d7b5e59d4
2019-08-07 00:48:15 -04:00

11 lines
537 B
XML

<?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>