installer-framework/doc/tutorial.qdoc

203 lines
7.1 KiB
Plaintext
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Installer Framework.
**
** $QT_BEGIN_LICENSE:FDL$
** 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.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: http://www.gnu.org/copyleft/fdl.html.
** $QT_END_LICENSE$
**
****************************************************************************/
2011-02-21 16:30:31 +01:00
/*!
\contentspage {index.html}{Qt Installer Framework}
\previouspage ifw-use-cases-settings.html
2011-02-21 16:30:31 +01:00
\page ifw-tutorial.html
\nextpage ifw-creating-installers.html
2011-02-21 16:30:31 +01:00
\title Tutorial: Creating an Installer
2011-02-21 16:30:31 +01:00
This tutorial describes how to create a simple installer for a small
project:
2011-02-21 16:30:31 +01:00
\image ifw-introduction-page.png "Introduction page"
2011-02-21 16:30:31 +01:00
This section describes the following tasks that you must accomplish to
create the installer:
2011-02-21 16:30:31 +01:00
\list 1
2011-02-21 16:30:31 +01:00
\o Create a \e {package directory} that will contain all the
configuration files and installable packages.
\o Create a \e {configuration file} that contains information about how
to build the installer binaries and online repositories.
\o Create a \e {package information file} that contains information
about the installable components.
\o Create installer content and copy it to the package directory.
\o Use the \c binarycreator tool to create the \e installer.
The installer pages are created by using the information you provide
in the configuration and package information file.
\endlist
The example files are located in the \c{examples\tutorial} directory in the
Qt Installer Framework repository.
2011-02-21 16:30:31 +01:00
\section1 Creating a Package Directory
2011-02-21 16:30:31 +01:00
Create a directory structure that reflects the design of the installer and
allows the installer to be extended in the future. The directory must
contain subdirectories called \c config and \c packages.
\image ifw-tutorial-files.png
For more information about the package directory, see \l{Package Directory}.
\section1 Creating a Configuration File
In the \c config directory, create a file called \c config.xml with the
following contents:
2011-02-21 16:30:31 +01:00
\quotefile ../examples/tutorial/config/config.xml
The configuration file specifies the following information that is
displayed on the introduction page:
\list
2011-02-21 16:30:31 +01:00
\o The \c Title section specifies the installer name displayed on the
title bar (1).
2011-02-21 16:30:31 +01:00
\o The \c Name section specifies the application name that is added to
the page name and introduction text (2).
2011-02-21 16:30:31 +01:00
\endlist
2011-02-21 16:30:31 +01:00
\image ifw-tutorial-introduction-page.png "Introduction page"
For more information about the configuration file format and the available
settings, see \l{Configuration File}.
\section1 Creating a Package Information File
In this easy scenario, the installer handles only one component that is
called \c{com.vendor.product}. To provide the installer with information
about the component, create a file called \c package.xml with the
following contents and place it in the \c meta directory:
2011-02-21 16:30:31 +01:00
\quotefile ../examples/tutorial/packages/com.vendor.product/meta/package.xml
2011-02-21 16:30:31 +01:00
For more information about the package information file, see
\l{Package Information File Syntax}.
\section2 Specifying Component Information
The package information file specifies the following information that is
displayed on the component selection page:
2011-02-21 16:30:31 +01:00
\list
2011-02-21 16:30:31 +01:00
\o The \c DisplayName section specifies the name of the component in
the list of components (1).
2011-02-21 16:30:31 +01:00
\o The \c Description section specifies the text that is displayed when
the component is selected (2).
2011-02-21 16:30:31 +01:00
\endlist
\image ifw-tutorial-select-components.png
\section2 Specifying Installer Version
The \c Version section enables you to promote updates to users when they
become available.
\section2 Adding Licenses
The \c License section specifies the name of the file that contains the text
for the license agreement (1) that is displayed on the license check page:
\image ifw-tutorial-license-check.png "License check page"
\note To create installers for multiple platforms, including Windows,
make sure that the line endings of the license file use the CRLF
format, as Windows does not apply Linux line endings correctly.
\section2 Selecting Default Contents
The \c Default section specifies whether the component is selected by
default. The value \c true sets the component as selected. In this example,
we use the value \c script to resolve the value during runtime. The
name of the script file, installscript.qs, is specified in the \c Script
section.
The script file should look as follows:
\quotefile ../examples/tutorial/packages/com.vendor.product/meta/installscript.qs
\section1 Creating Installer Content
Content to be installed is stored in the \c data directory of a component.
As there is only one component, place the data in the
\c{packages/com.vendor.product/data} directory. The example already contains
a file for testing purposes, but you can place basically any files in the
directory.
For more information about packaging rules and options, see
\l{Data Directory}.
\section1 Creating the Installer Binary
You are now ready to create your first installer. Switch to the
\a tutorial directory on the command line. To create an installer called
YourInstaller.exe that contains the packages identified by
com.vendor.product, enter the following command:
\list
\o On Windows:
2011-02-21 16:30:31 +01:00
\code
..\..\bin\binarycreator.exe -c config\config.xml -p packages YourInstaller.exe
2011-02-21 16:30:31 +01:00
\endcode
\o On Linux or Mac OS X:
2011-02-21 16:30:31 +01:00
\code
../../bin/binarycreator -c config/config.xml -p packages YourInstaller
2011-02-21 16:30:31 +01:00
\endcode
\endlist
The installer is created in the current directory and you can deliver it to
end users.
For more information about using the \c binarycreator tool, see
\l{binarycreator}.
2011-02-21 16:30:31 +01:00
\note If an error message is displayed when you run the tutorial installer,
check that you used a statically built Qt to create the installer. For more
information, see \l{Configuring Qt}.
2011-02-21 16:30:31 +01:00
*/