8c4d81484c
Noticed the warnings when building the manual tests. Pick-to: 6.5 Change-Id: I7f927f42f11d234ec3c980f36d8e12c0c49be712 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
36 lines
715 B
CMake
36 lines
715 B
CMake
|
|
#####################################################################
|
|
## kitchensink Binary:
|
|
#####################################################################
|
|
|
|
qt_internal_add_manual_test(kitchensink
|
|
SOURCES
|
|
dragwidget.cpp dragwidget.h
|
|
main.cpp
|
|
DEFINES
|
|
HAVE_SCREEN_BASE_DPI
|
|
INCLUDE_DIRECTORIES
|
|
.
|
|
LIBRARIES
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
Qt::Widgets
|
|
)
|
|
|
|
# Resources:
|
|
set(kitchensink_resource_files
|
|
"qticon16.png"
|
|
"qticon16@2x.png"
|
|
"qticon16@3x.png"
|
|
"qticon32.png"
|
|
"qticon32@2x.png"
|
|
"qticon64.png"
|
|
)
|
|
|
|
qt_internal_add_resource(kitchensink "kitchensink"
|
|
PREFIX
|
|
"/"
|
|
FILES
|
|
${kitchensink_resource_files}
|
|
)
|