aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/imageelements/CMakeLists.txt
blob: 425e8933bd44cb6f46850db9185afe64fea7d0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Generated from imageelements.pro.

cmake_minimum_required(VERSION 3.16)
project(imageelements LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

if(NOT DEFINED INSTALL_EXAMPLESDIR)
  set(INSTALL_EXAMPLESDIR "examples")
endif()

set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/quick/imageelements")

find_package(Qt6 COMPONENTS Core Gui Quick Qml)

add_subdirectory("../shared" "shared")

qt_add_executable(imageelementsexample
    WIN32
    MACOSX_BUNDLE
    main.cpp
)

target_link_libraries(imageelementsexample PUBLIC
    Qt::Core
    Qt::Gui
    Qt::Qml
    Qt::Quick
)

qt_add_qml_module(imageelementsexample
    URI imageelements
    VERSION 1.0
    QML_FILES
        "animatedimage.qml"
        "animatedsprite.qml"
        "borderimage.qml"
        "framestepping.qml"
        "image.qml"
        "imageelements.qml"
        "multiframeborderimage.qml"
        "shadows.qml"
        "spritesequence.qml"
        "BorderImageSelector.qml"
        "ImageCell.qml"
        "MyBorderImage.qml"
        "ShadowRectangle.qml"
    RESOURCES
        "pics/qt-logo.png"
        "pics/shadow.png"
        "pics/speaker.png"
        "pics/colors.png"
        "pics/BearSheet.png"
        "pics/Uniflow_steam_engine.gif"
        "pics/arrow.png"
        "pics/bw.png"
        "pics/multi.ico"
        "pics/colors-round.sci"
        "pics/colors-stretch.sci"
    )

install(TARGETS imageelementsexample
    RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
    BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
    LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)

bundle_shared(imageelementsexample)