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
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# Generated from buttons.pro.
if (NOT QT_BUILD_STANDALONE_TESTS AND NOT QT_BUILDING_QT)
cmake_minimum_required(VERSION 3.16)
project(buttons LANGUAGES C CXX ASM)
find_package(Qt6BuildInternals COMPONENTS STANDALONE_TEST)
endif()
#####################################################################
## buttons Binary:
#####################################################################
qt_internal_add_manual_test(buttons
GUI
SOURCES
buttons.cpp
LIBRARIES
Qt::Gui
Qt::Qml
Qt::QuickControls2
)
file(GLOB resource_glob_0 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*.qml")
foreach(file IN LISTS resource_glob_0)
set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/${file}" PROPERTIES QT_RESOURCE_ALIAS "${file}")
endforeach()
# Resources:
set(qmake_immediate_resource_files
${resource_glob_0}
)
qt_internal_add_resource(buttons "qmake_immediate"
PREFIX
"/"
FILES
${qmake_immediate_resource_files}
)
#### Keys ignored in scope 1:.:.:buttons.pro:<TRUE>:
# TEMPLATE = "app"
|