2011-09-21 11:48:20 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<!--
|
2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-09-21 11:48:20 +02:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-09-21 11:48:20 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-09-21 11:48:20 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-09-21 11:48:20 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-09-21 11:48:20 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-09-21 11:48:20 +02:00
|
|
|
|
|
|
|
|
Custom project wizard configuration example file. Note that by convention,
|
|
|
|
|
the project file goes last.
|
|
|
|
|
The "class" and "firstpage" attributes specify that it is a Qt 4 wizard and
|
|
|
|
|
leave room for the Qt 4 target page.
|
|
|
|
|
-->
|
|
|
|
|
<wizard version="1" kind="project"
|
|
|
|
|
class="qt4project" firstpage="10"
|
2012-02-27 13:02:55 +01:00
|
|
|
id="R.Plain C++" category="I.Projects"
|
2012-02-14 13:50:38 +01:00
|
|
|
featuresRequired="QtSupport.Wizards.FeatureQt">
|
2011-09-21 11:48:20 +02:00
|
|
|
<icon>console.png</icon>
|
2011-11-03 14:17:25 +01:00
|
|
|
<description>Creates a plain C++ project using qmake, not using the Qt library.</description>
|
2011-09-21 12:02:56 +02:00
|
|
|
<displayname>Plain C++ Project</displayname>;
|
2012-02-27 13:02:55 +01:00
|
|
|
<displaycategory>Non-Qt Project</displaycategory>
|
2011-09-21 11:48:20 +02:00
|
|
|
<files>
|
|
|
|
|
<file source="main.cpp" openeditor="true"/>
|
|
|
|
|
<file source="project.pro" target="%ProjectName%.pro" openproject="true"/>
|
|
|
|
|
</files>
|
|
|
|
|
</wizard>
|