mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 04:44:31 +08:00
31 lines
644 B
CMake
31 lines
644 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#####################################################################
|
|
## t_cursors Binary:
|
|
#####################################################################
|
|
|
|
qt_internal_add_manual_test(t_cursors
|
|
GUI
|
|
SOURCES
|
|
main.cpp
|
|
mainwindow.cpp mainwindow.h mainwindow.ui
|
|
LIBRARIES
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
ENABLE_AUTOGEN_TOOLS
|
|
uic
|
|
)
|
|
|
|
# Resources:
|
|
set(images_resource_files
|
|
"data/monkey_on_64x64.png"
|
|
)
|
|
|
|
qt_internal_add_resource(t_cursors "images"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${images_resource_files}
|
|
)
|