Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'cross/org.eclipse.cdt.build.crossgcc/templates/setCrossCommand/template.xml')
-rwxr-xr-xcross/org.eclipse.cdt.build.crossgcc/templates/setCrossCommand/template.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/cross/org.eclipse.cdt.build.crossgcc/templates/setCrossCommand/template.xml b/cross/org.eclipse.cdt.build.crossgcc/templates/setCrossCommand/template.xml
new file mode 100755
index 00000000000..cb46bdd59b0
--- /dev/null
+++ b/cross/org.eclipse.cdt.build.crossgcc/templates/setCrossCommand/template.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<template type="ProjTempl" version="1.0" supplier="Eclipse.org" revision="1.0" author="EclipseCon"
+ copyright="Copyright (c) 2009 EclipseCon and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html"
+ id="EmptyProject" label="Cross-Compile Project" description="Set up a cross compiler"
+ help="help.html">
+
+ <property-group id="command" label="Command" description="The Cross Compile Command" type="PAGES-ONLY" help="help.html">
+ <property id="prefix"
+ label="Tool command prefix"
+ description="The prefix to attach to the build commands, e.g. gcc"
+ type="input"
+ pattern=".*"
+ default=""
+ hidden="false"
+ persist="true"/>
+
+ <property id="path"
+ label="Tool command path"
+ description="The root directory for the toolchain"
+ type="browsedir"
+ pattern=".*"
+ default=""
+ hidden="false"
+ persist="true"/>
+ </property-group>
+
+ <process type="tut.cross.good.setCrossCommand">
+ <simple name="projectName" value="$(projectName)"/>
+ <simple name="prefix" value="$(prefix)"/>
+ <simple name="path" value="$(path)"/>
+ </process>
+
+</template>

Back to the top