aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-11-14 11:39:42 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-11-15 12:24:38 +0000
commit91e32f86b53bb930405a58e19c84746ee85cdf89 (patch)
tree3419986b62355e718551b83a514c1169480a8ed0 /tests/manual/pointer
parent387f360b3b2634094889478f2b258e65a70b9aa6 (diff)
Regenerate remaining tests to be in sync
Change-Id: I200c8f58ad13bc1bc78409a3ce49348584ba5b51 Reviewed-by: Qt CMake Build Bot Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests/manual/pointer')
-rw-r--r--tests/manual/pointer/CMakeLists.txt118
1 files changed, 63 insertions, 55 deletions
diff --git a/tests/manual/pointer/CMakeLists.txt b/tests/manual/pointer/CMakeLists.txt
index fef6bdafc1..1c70e03f62 100644
--- a/tests/manual/pointer/CMakeLists.txt
+++ b/tests/manual/pointer/CMakeLists.txt
@@ -4,7 +4,7 @@
## pointer Binary:
#####################################################################
-add_qt_executable(pointer
+add_qt_manual_test(pointer
GUI
SOURCES
inputinspector.cpp inputinspector.h
@@ -19,53 +19,57 @@ add_qt_executable(pointer
)
# Resources:
+set(qml_resource_files
+ "content/CheckBox.qml"
+ "content/FakeFlickable.qml"
+ "content/FlashAnimation.qml"
+ "content/MomentumAnimation.qml"
+ "content/MouseAreaButton.qml"
+ "content/MouseAreaSlider.qml"
+ "content/MouseFeedbackSprite.qml"
+ "content/MptaButton.qml"
+ "content/MultiButton.qml"
+ "content/ScrollBar.qml"
+ "content/Slider.qml"
+ "content/TapHandlerButton.qml"
+ "content/TextBox.qml"
+ "content/TouchpointFeedbackSprite.qml"
+ "fakeFlickable.qml"
+ "flickableWithHandlers.qml"
+ "flingAnimation.qml"
+ "joystick.qml"
+ "main.qml"
+ "map.qml"
+ "map2.qml"
+ "mixer.qml"
+ "multibuttons.qml"
+ "photosurface.qml"
+ "pinchHandler.qml"
+ "pointerDrag.qml"
+ "resources/arrowhead.png"
+ "resources/balloon.png"
+ "resources/fighter.png"
+ "resources/fingersprite.png"
+ "resources/grabbing-location.svg"
+ "resources/joystick-outer-case-pov.jpg"
+ "resources/map.svgz"
+ "resources/missile.png"
+ "resources/mixer-knob.png"
+ "resources/mouse.png"
+ "resources/mouse_left.png"
+ "resources/mouse_middle.png"
+ "resources/mouse_right.png"
+ "resources/redball.png"
+ "sidebar.qml"
+ "singlePointHandlerProperties.qml"
+ "tapHandler.qml"
+)
+
add_qt_resource(pointer "qml"
PREFIX
"/"
FILES
- content/CheckBox.qml
- content/FakeFlickable.qml
- content/FlashAnimation.qml
- content/MomentumAnimation.qml
- content/MouseAreaButton.qml
- content/MouseAreaSlider.qml
- content/MouseFeedbackSprite.qml
- content/MptaButton.qml
- content/MultiButton.qml
- content/ScrollBar.qml
- content/Slider.qml
- content/TapHandlerButton.qml
- content/TextBox.qml
- content/TouchpointFeedbackSprite.qml
- fakeFlickable.qml
- flickableWithHandlers.qml
- flingAnimation.qml
- joystick.qml
- main.qml
- map.qml
- map2.qml
- mixer.qml
- multibuttons.qml
- photosurface.qml
- pinchHandler.qml
- pointerDrag.qml
- resources/arrowhead.png
- resources/balloon.png
- resources/fighter.png
- resources/fingersprite.png
- resources/grabbing-location.svg
- resources/joystick-outer-case-pov.jpg
- resources/map.svgz
- resources/missile.png
- resources/mixer-knob.png
- resources/mouse.png
- resources/mouse_left.png
- resources/mouse_middle.png
- resources/mouse_right.png
- resources/redball.png
- sidebar.qml
- singlePointHandlerProperties.qml
- tapHandler.qml
+ ${qml_resource_files}
)
set_source_files_properties("../../../examples/quick/shared/Button.qml"
PROPERTIES QT_RESOURCE_ALIAS "Button.qml"
@@ -100,23 +104,27 @@ set_source_files_properties("../../../examples/quick/shared/images/next.png"
set_source_files_properties("../../../examples/quick/shared/images/slider_handle.png"
PROPERTIES QT_RESOURCE_ALIAS "images/slider_handle.png"
)
+set(quick_shared_resource_files
+ "Button.qml"
+ "CheckBox.qml"
+ "Label.qml"
+ "LauncherList.qml"
+ "SimpleLauncherDelegate.qml"
+ "Slider.qml"
+ "TextField.qml"
+ "images/back.png"
+ "images/checkmark.png"
+ "images/next.png"
+ "images/slider_handle.png"
+)
+
add_qt_resource(pointer "quick_shared"
PREFIX
"/quick/shared"
BASE
"../../../examples/quick/shared"
FILES
- Button.qml
- CheckBox.qml
- Label.qml
- LauncherList.qml
- SimpleLauncherDelegate.qml
- Slider.qml
- TextField.qml
- images/back.png
- images/checkmark.png
- images/next.png
- images/slider_handle.png
+ ${quick_shared_resource_files}
)