summaryrefslogtreecommitdiffstats
path: root/examples/demos/mediaplayer/MediaPlayer/CMakeLists.txt
blob: b206b6cc061a47022c8c1e2d7ddc19c07ee1bfde (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
qt_add_library(MediaPlayer STATIC)

set_source_files_properties(Images.qml
    PROPERTIES
        QT_QML_SINGLETON_TYPE true
)

qt_add_qml_module(MediaPlayer
    URI "MediaPlayer"
    QML_FILES
        "Main.qml"
        "Images.qml"
        "MetadataInfo.qml"
        "PlayerMenuBar.qml"
        "TracksInfo.qml"
        "TracksOptions.qml"
        "PlaylistInfo.qml"
        "UrlPopup.qml"
        "SettingsInfo.qml"
        "ThemeInfo.qml"
        "ErrorPopup.qml"
        "TouchMenu.qml"
    RESOURCES
        "icons/Shadow.png"
        "icons/Shadow@2x.png"
        "icons/Default_CoverArt.svg"
        "icons/Movie_Active.svg"
        "icons/Movie_Icon_Dark.svg"
        "icons/Movie_Icon.svg"
        "icons/Music_Active.svg"
        "icons/Music_Icon_Dark.svg"
        "icons/Music_Icon.svg"
        "icons/Warning_Icon.svg"
)