1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Patch for bug 184452 by Bala Torati - externalization of MakeFileHelloworldCCproject

This commit is contained in:
Vivian Kong 2007-06-07 14:03:49 +00:00
parent 2b6e354084
commit 69c40076b3
2 changed files with 34 additions and 10 deletions

View file

@ -0,0 +1,24 @@
###############################################################################
# Copyright (c) 2007 Symbian Software Private Ltd. 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
#
# Contributors:
# Bala Torati (Symbian) - initial API and implementation
###############################################################################
#Template Default Values
MakefileHelloWorld.CCtemplate.label=Hello World C++ Project
MakefileHelloWorld.CCtemplate.description=A Hello World C++ Project
MakefileHelloWorld.basics.label=Basic Settings
MakefileHelloWorld.basics.description=Basic properties of a project
MakefileHelloWorld.author.label=Author
MakefileHelloWorld.author.description=Name of the author
MakefileHelloWorld.copyright.label=Copyright notice
MakefileHelloWorld.copyright.description=Your copyright notice
MakefileHelloWorld.copyright.default=Your copyright notice
MakefileHelloWorld.message.default=Hello World!!!
MakefileHelloWorld.message.description=Your hello world greeting message
MakefileHelloWorld.message.label=Hello world greeting

View file

@ -1,31 +1,31 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<template type="ProjTempl" version="1.0" supplier="Eclipse.org" revision="1.0" author="Intel Corporation" <template type="ProjTempl" version="1.0" supplier="Eclipse.org" revision="1.0" author="Intel Corporation"
copyright="Copyright (c) 2007 Intel Corporation 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" copyright="Copyright (c) 2007 Intel Corporation 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="MakefileHelloWorldCCProject" label="Hello World C++ Project" description="A Hello World C++ Project" id="MakefileHelloWorldCCProject" label="%MakefileHelloWorld.CCtemplate.label" description="%MakefileHelloWorld.CCtemplate.description"
help="help.html"> help="help.html">
<property-group id="basics" label="Basic Settings" description="Basic properties of a project" type="PAGES-ONLY" help="help.html"> <property-group id="basics" label="%MakefileHelloWorld.basics.label" description="%MakefileHelloWorld.basics.description" type="PAGES-ONLY" help="help.html">
<property id="author" <property id="author"
label="Author" label="%MakefileHelloWorld.author.label"
description="Name of the author" description="%MakefileHelloWorld.author.description"
type="input" type="input"
pattern=".*" pattern=".*"
default="" default=""
hidden="false" hidden="false"
persist="true"/> persist="true"/>
<property id="copyright" <property id="copyright"
label="Copyright notice" label="%MakefileHelloWorld.copyright.label"
description="Your copyright notice" description="%MakefileHelloWorld.copyright.description"
type="input" type="input"
pattern=".*" pattern=".*"
default="Your copyright notice" default="%MakefileHelloWorld.copyright.default"
hidden="false" hidden="false"
persist="true"/> persist="true"/>
<property id="message" <property id="message"
label="Hello world greeting" label="%MakefileHelloWorld.message.label"
description="Your hello world greeting message" description="%MakefileHelloWorld.message.description"
type="input" type="input"
pattern=".*" pattern=".*"
default="Hello World!!!" default="%MakefileHelloWorld.message.default"
hidden="false" hidden="false"
persist="true"/> persist="true"/>
</property-group> </property-group>