mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-03 05:33:33 +02:00

README: Create a C/C++ Application launch as normal, and in the Launch Configuration dialog click "Select other..." at the bottom/center and selecting GDB (DAP) Debug Process Launcher (you can't do this in the LaunchBar's dialog as it does not support changing the launcher). Then debug as you normally do (with less features so far :-) Change-Id: Ia36acedf064b3774c6ac2a863880eaf7efe9c399
7 lines
390 B
XML
7 lines
390 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" />
|
|
</target>
|
|
</project>
|