summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/qt_example_installs.prf
blob: 72b47bce276f794b13dd95d713c306927f9a2094 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#
#  W A R N I N G
#  -------------
#
# This file is not part of the Qt API.  It exists purely as an
# implementation detail.  It may change from version to version
# without notice, or even be removed.
#
# We mean it.
#

defineTest(addInstallFiles) {
    for(sf, 2) {
        sf = $$relative_path($$sf, $$_PRO_FILE_PWD_)
        contains(sf, \\..*) {
            check_examples: message("Notice: $$_PRO_FILE_ refers to $$sf")
        } else {
            sfp = $$replace(sf, /.*, )
            !equals(sfp, $$sf): \
                $$1 *= $$sfp
            else: \
                $$1 += $$sf
        }
    }
    export($$1)
}

moduleRoot = $$dirname(_QMAKE_CONF_)
probase = $$relative_path($$_PRO_FILE_PWD_, $$moduleRoot/examples)
isEmpty(probase)|contains(probase, ^\\..*): \
    return()

isEmpty(_QMAKE_CACHE_) {
    moduleRootRelativeToBuildDir = $$relative_path($$moduleRoot, $$OUT_PWD)
    # Check if OUT_PWD is inside module root
    equals(moduleRootRelativeToBuildDir, .)|contains(moduleRootRelativeToBuildDir, \(\.\./\)+\(\.\.\)?): \
        error("You cannot build examples inside the Qt source tree, except as part of a proper Qt build.")
}

contains(TEMPLATE, "vc.*"): \
    return()

contains(TEMPLATE, .*app): \
    qtSetQmlPath()

for(ex, EXAMPLE_FILES): \
    sourcefiles += $$files($$absolute_path($$ex, $$_PRO_FILE_PWD_))
for(res, RESOURCES) {
    !contains(res, .*\\.qrc): \
        next()
    rfile = $$absolute_path($$res, $$_PRO_FILE_PWD_)
    rpath = $$dirname(rfile)
    rcont = $$cat($$rfile, lines)
    for (rline, rcont) {
        resrc = $$replace(rline, ^[ \\t]*<file[^>]*>([^<]+)</file>[ \\t]*$, \\1)
        !equals(resrc, $$rline): \
            sourcefiles += $$absolute_path($$resrc, $$rpath)
    }
}
for(res, RC_FILE) {
    rfile = $$absolute_path($$res, $$_PRO_FILE_PWD_)
    rpath = $$dirname(rfile)
    rcont = $$cat($$rfile, lines)
    for (rline, rcont) {
        resrc = $$replace(rline, "^\\d+\\s+ICON\\s+[^\"]*\"([^\"]+)\"\$", \\1)
        !equals(resrc, $$rline): \
            sourcefiles += $$absolute_path($$resrc, $$rpath)
    }
}
sourcefiles += \
    $$ANDROID_PACKAGE_SOURCE_DIR \
    $$QMAKE_INFO_PLIST \
    $$DISTFILES
extras = \
    $$_PRO_FILE_PWD_/README \
    $$_PRO_FILE_PWD_/README.TXT \
    $$files($$_PRO_FILE_PWD_/*.pri) \
    $$replace(_PRO_FILE_, \\.pro$, .qmlproject) \
    $$replace(_PRO_FILE_, \\.pro$, .json) \
    $$replace(_PRO_FILE_, \\.pro$, .inf)
for(extra, extras): \
    exists($$extra): \
        sourcefiles += $$extra

# Just for Qt Creator
OTHER_FILES += $$sourcefiles

sourcefiles += \
    $$_PRO_FILE_ $$RC_FILE $$DEF_FILE \
    $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \
    $$DBUS_ADAPTORS $$DBUS_INTERFACES
addInstallFiles(sources.files, $$sourcefiles)
sources.path = $$[QT_INSTALL_EXAMPLES]/$$probase
INSTALLS += sources

check_examples {
    srcfiles = $$sources.files
    for(inst, INSTALLS): \
        !equals(inst, target):!contains($${inst}.CONFIG, no_check_exist): \
            for(file, $${inst}.files): \
                instfiles += $$files($$absolute_path($$file, $$_PRO_FILE_PWD_))
    addInstallFiles(srcfiles, $$instfiles)

    thefiles = $$files($$_PRO_FILE_PWD_/*)
    for(i, thefiles): \
        allfiles += $$relative_path($$i, $$_PRO_FILE_PWD_)
    for(i, srcfiles): \
        allfiles -= $$relative_path($$i, $$_PRO_FILE_PWD_)
    for(i, SUBDIRS) {
        sd = $$eval($${i}.file)
        !isEmpty(sd) {
            sd ~= s,/.*,,
        } else {
            sd = $$eval($${i}.subdir)
            isEmpty(sd): sd = $$i
        }
        allfiles -= $$sd
    }
    allfiles -= doc
    !isEmpty(allfiles): warning("remaining files in $$_PRO_FILE_PWD_: $$allfiles")
}

equals(TEMPLATE, app)|equals(TEMPLATE, lib) {
    !contains(INSTALLS, target) {
        !install_ok: \
            error("$$_PRO_FILE_ is lacking an install target.")
        else: check_examples: \
            warning("$$_PRO_FILE_ is lacking an install target.")
    } else: !equals(target.path, $$sources.path) {
        !install_ok: \
            error("$$_PRO_FILE_ installs target to unexpected location.")
        else: check_examples: \
            warning("$$_PRO_FILE_ installs target to unexpected location.")
    }
}

!equals(TEMPLATE, subdirs):!compile_examples {
    TEMPLATE = aux
    CONFIG -= have_target qt staticlib dll
    SOURCES =
    OBJECTIVE_SOURCES =
    INSTALLS -= target
} else {
    CONFIG += relative_qt_rpath  # Examples built as part of Qt should be relocatable
}