Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f65902e8b88892558c2cc79e00e7f47df218737e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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="org.eclipse.cdt.build.crossgcc.setCrossCommand">
		<simple name="projectName" value="$(projectName)"/>
		<simple name="prefix" value="$(prefix)"/>
		<simple name="path" value="$(path)"/>
	</process>
	
</template>

Back to the top