Regenerate tests/auto/widgets/dialogs
Change-Id: Ief296935d274bfaa217442890927593f0875271a Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>bb10
parent
52d9b2234c
commit
8801d499d0
|
|
@ -1 +1,13 @@
|
|||
add_qt_test("tst_qcolordialog" SOURCES tst_qcolordialog.cpp LIBRARIES Qt::Widgets)
|
||||
# Generated from qcolordialog.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qcolordialog Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qcolordialog
|
||||
SOURCES
|
||||
tst_qcolordialog.cpp
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,8 +1,16 @@
|
|||
add_qt_test("tst_qdialog"
|
||||
# Generated from qdialog.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qdialog Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qdialog
|
||||
SOURCES
|
||||
tst_qdialog.cpp
|
||||
LIBRARIES
|
||||
Qt::Widgets
|
||||
Qt::GuiPrivate
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1 +1,16 @@
|
|||
add_qt_test("tst_qerrormessage" SOURCES tst_qerrormessage.cpp LIBRARIES Qt::Widgets)
|
||||
# Generated from qerrormessage.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qerrormessage Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qerrormessage
|
||||
SOURCES
|
||||
tst_qerrormessage.cpp
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:.:qerrormessage.pro:<TRUE>:
|
||||
# TEMPLATE = "app"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,19 @@
|
|||
add_qt_test("tst_qfiledialog"
|
||||
SOURCES tst_qfiledialog.cpp
|
||||
DEFINES SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}/"
|
||||
# Generated from qfiledialog.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qfiledialog Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qfiledialog
|
||||
SOURCES
|
||||
tst_qfiledialog.cpp
|
||||
DEFINES
|
||||
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
||||
LIBRARIES
|
||||
Qt::WidgetsPrivate
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,19 @@
|
|||
add_qt_test("tst_qfiledialog2"
|
||||
# Generated from qfiledialog2.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qfiledialog2 Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qfiledialog2
|
||||
SOURCES
|
||||
tst_qfiledialog2.cpp
|
||||
DEFINES
|
||||
SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}/"
|
||||
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
||||
LIBRARIES
|
||||
Qt::WidgetsPrivate
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -14,13 +14,10 @@ add_qt_test(tst_qfilesystemmodel
|
|||
Qt::CorePrivate
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Core
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:.:qfilesystemmodel.pro:<TRUE>:
|
||||
# CONFIG = "testcase"
|
||||
|
||||
## Scopes:
|
||||
#####################################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -12,23 +12,29 @@ add_qt_test(tst_qfontdialog
|
|||
Qt::GuiPrivate
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Core
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
||||
# Resources:
|
||||
set_source_files_properties("../../../shared/resources/test.ttf"
|
||||
PROPERTIES QT_RESOURCE_ALIAS "test.ttf")
|
||||
PROPERTIES QT_RESOURCE_ALIAS "test.ttf"
|
||||
)
|
||||
set_source_files_properties("../../../shared/resources/testfont.ttf"
|
||||
PROPERTIES QT_RESOURCE_ALIAS "testfont.ttf")
|
||||
add_qt_resource(tst_qfontdialog "testfonts" PREFIX "/" FILES
|
||||
../../../shared/resources/test.ttf
|
||||
../../../shared/resources/testfont.ttf)
|
||||
PROPERTIES QT_RESOURCE_ALIAS "testfont.ttf"
|
||||
)
|
||||
set(testfonts_resource_files
|
||||
"../../../shared/resources/test.ttf"
|
||||
"../../../shared/resources/testfont.ttf"
|
||||
)
|
||||
|
||||
add_qt_resource(tst_qfontdialog "testfonts"
|
||||
PREFIX
|
||||
"/"
|
||||
FILES
|
||||
${testfonts_resource_files}
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:.:qfontdialog.pro:<TRUE>:
|
||||
# CONFIG = "testcase"
|
||||
|
||||
## Scopes:
|
||||
#####################################################################
|
||||
|
|
|
|||
|
|
@ -1 +1,15 @@
|
|||
add_qt_test("tst_qinputdialog" SOURCES tst_qinputdialog.cpp LIBRARIES Qt::WidgetsPrivate)
|
||||
# Generated from qinputdialog.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qinputdialog Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qinputdialog
|
||||
SOURCES
|
||||
tst_qinputdialog.cpp
|
||||
LIBRARIES
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,19 @@
|
|||
add_qt_test("tst_qmessagebox" SOURCES tst_qmessagebox.cpp
|
||||
# Generated from qmessagebox.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qmessagebox Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qmessagebox
|
||||
SOURCES
|
||||
tst_qmessagebox.cpp
|
||||
LIBRARIES
|
||||
Qt::GuiPrivate
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:.:qmessagebox.pro:<TRUE>:
|
||||
# TEMPLATE = "app"
|
||||
|
|
|
|||
|
|
@ -1 +1,13 @@
|
|||
add_qt_test("tst_qprogressdialog" SOURCES tst_qprogressdialog.cpp LIBRARIES Qt::Widgets)
|
||||
# Generated from qprogressdialog.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qprogressdialog Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qprogressdialog
|
||||
SOURCES
|
||||
tst_qprogressdialog.cpp
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
add_qt_test("tst_qsidebar" SOURCES tst_qsidebar.cpp
|
||||
# Generated from qsidebar.pro.
|
||||
|
||||
#####################################################################
|
||||
## tst_qsidebar Test:
|
||||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qsidebar
|
||||
SOURCES
|
||||
tst_qsidebar.cpp
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::WidgetsPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Gui
|
||||
Qt::Widgets
|
||||
)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
#####################################################################
|
||||
|
||||
add_qt_test(tst_qwizard
|
||||
GUI
|
||||
SOURCES
|
||||
tst_qwizard.cpp
|
||||
tst_qwizard_2.cpp
|
||||
|
|
@ -15,16 +14,17 @@ add_qt_test(tst_qwizard
|
|||
)
|
||||
|
||||
# Resources:
|
||||
set(qwizard_resource_files
|
||||
"images/background.png"
|
||||
"images/banner.png"
|
||||
"images/logo.png"
|
||||
"images/watermark.png"
|
||||
)
|
||||
|
||||
add_qt_resource(tst_qwizard "qwizard"
|
||||
PREFIX
|
||||
"/"
|
||||
FILES
|
||||
images/background.png
|
||||
images/banner.png
|
||||
images/logo.png
|
||||
images/watermark.png
|
||||
${qwizard_resource_files}
|
||||
)
|
||||
|
||||
|
||||
#### Keys ignored in scope 1:.:.:qwizard.pro:<TRUE>:
|
||||
# CONFIG = "testcase"
|
||||
|
|
|
|||
Loading…
Reference in New Issue