summaryrefslogtreecommitdiff
path: root/doc/qtcreator/src/qtquick/creator-only/qtquick-tutorial-create-empty-project.qdocinc
blob: 3eb7e5401fb8fdb8d8506eb20f64e24d2f42fb4c (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Creator documentation.
**
** 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 The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/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: https://www.gnu.org/licenses/fdl-1.3.html.
**
****************************************************************************/

/*!
//! [qtquick empty application]

    \section1 Creating the Project

    \list 1

        \li Select \uicontrol File > \uicontrol {New File or Project} >
            \uicontrol {Application (Qt)} > \uicontrol {Qt Quick Application}.

        \li Select \uicontrol Choose to open the
            \uicontrol {Project Location} dialog.

        \li In the \uicontrol Name field, enter a name for the application.
            When naming your own projects, keep in mind that they cannot be
            easily renamed later.

        \li In the \uicontrol {Create in} field, enter the path for the project
            files. You can move project folders later without problems.

        \li Select \uicontrol Next (or \uicontrol Continue on \macos) to open
            the \uicontrol {Define Build System} dialog.

        \li In the \uicontrol {Build system} field, select \l {Setting Up CMake}
            {CMake} as the build system to use for building and running the
            project.

            \note If you select \l qmake, the instructions for configuring the
            project won't apply.

        \li Select \uicontrol Next to open the
            \uicontrol {Define Project Details} dialog.

        \li In the \uicontrol {Minimal required Qt version} field, select
            Qt 6.2.

        \li Select \uicontrol Next to open the \uicontrol {Translation File}
            dialog.

        \li Select \uicontrol Next to use the default settings and to open
            the \uicontrol {Kit Selection} dialog.

        \li Select Qt 6.2 or later \l{glossary-buildandrun-kit}{kits} for the
            platforms that you want to build the application for. To build
            applications for mobile devices, select kits also for Android and
            iOS.

            \note Kits are listed if they have been specified in \uicontrol
            Tools > \uicontrol Options > \uicontrol Kits (on Windows and Linux)
            or in \uicontrol {\QC} > \uicontrol Preferences >
            \uicontrol Kits (on \macos).
            For more information, see \l {Adding Kits}.

        \li Select \uicontrol Next to open the \uicontrol {Project Management}
            dialog.

        \li Review the project settings, and select \uicontrol{Finish}
            (or \uicontrol Done on \macos) to create the project.

    \endlist

    For more information about the settings that you skipped and the other
    wizard templates available, see \l{Creating Qt Quick Applications}.

//! [qtquick empty application]
*/