blob: 1973f1a2fd280d412d359297095a0ee4d8828ddd (
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
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# Generated from headerview.pro.
if (NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
cmake_minimum_required(VERSION 3.16)
project(headerview LANGUAGES C CXX)
find_package(Qt6BuildInternals COMPONENTS STANDALONE_TEST)
endif()
#####################################################################
## headerview Binary:
#####################################################################
qt_internal_add_manual_test(headerview
GUI
SOURCES
main.cpp
LIBRARIES
Qt::Gui
Qt::Qml
Qt::Quick
Qt::QuickControls2
Qt::QuickControls2Private
Qt::QuickPrivate
Qt::QuickTemplates2
Qt::QuickTemplates2Private
)
# Resources:
set(qmake_immediate_resource_files
"main.qml"
)
qt_internal_add_resource(headerview "qmake_immediate"
PREFIX
"/"
FILES
${qmake_immediate_resource_files}
)
#### Keys ignored in scope 1:.:.:headerview.pro:<TRUE>:
# TEMPLATE = "app"
## Scopes:
#####################################################################
#### Keys ignored in scope 2:.:.:headerview.pro:QNX:
# target.path = "/tmp/$${TARGET}/bin"
#### Keys ignored in scope 4:.:.:headerview.pro:UNIX AND NOT ANDROID:
# target.path = "/opt/$${TARGET}/bin"
#### Keys ignored in scope 5:.:.:headerview.pro:NOT target.path_ISEMPTY:
# INSTALLS = "target"
|