mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
35 lines
779 B
CMake
35 lines
779 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#####################################################################
|
|
## weatheranchorlayout Binary:
|
|
#####################################################################
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
qt_internal_add_manual_test(weatheranchorlayout
|
|
GUI
|
|
SOURCES
|
|
main.cpp
|
|
LIBRARIES
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
)
|
|
|
|
# Resources:
|
|
set(weatheranchorlayout_resource_files
|
|
"images/5days.jpg"
|
|
"images/details.jpg"
|
|
"images/place.jpg"
|
|
"images/tabbar.jpg"
|
|
"images/title.jpg"
|
|
"images/weather-few-clouds.png"
|
|
)
|
|
|
|
qt_add_resources(weatheranchorlayout "weatheranchorlayout"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${weatheranchorlayout_resource_files}
|
|
)
|
|
|