mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-02 05:03:36 +02:00
11 lines
537 B
XML
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>
|