1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/debug/org.eclipse.cdt.debug.application/configGenerator.xml
Jonah Graham 48d2271a58 Bug 540373: Normalize newlines with .gitattributes
There is also a new script to verify completeness of .gitattributes:
releng/scripts/verify_gitattributes.sh

Change-Id: I2ce270852ab54b66b6c474a6ec94203fe5bba78b
2018-11-20 21:20:39 +00:00

15 lines
581 B
XML

<!-- This generates the config.ini file, based on the debug.product -->
<project name="Build specific targets and properties" default="generate.configuration">
<target name="generate.configuration" description="Generates config.ini file">
<java classname="org.eclipse.cdt.debug.application.ConfigGenerator" failonerror="true">
<arg value="-product"/>
<arg value="${product_path}"/>
<arg value="-out"/>
<arg value="${config_path}"/>
<classpath>
<pathelement path="bin"/>
<pathelement path="target/classes"/>
</classpath>
</java>
</target>
</project>