1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00
cdt/debug/org.eclipse.cdt.debug.dap/BuildDebugServers.xml

16 lines
830 B
XML
Raw Normal View History

<?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">
<!-- Don't upgrade on each build - TODO determine better way to keep this bundle up to date, in the meantime
the upgrading is a manual process when and if needed, and is
part of https://github.com/eclipse-cdt/cdt-infra/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Aendgame
-->
<!-- <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>