summaryrefslogtreecommitdiffstats
path: root/src/corelib/mimetypes/mimetypes_resources.cmake
blob: a91d25cc2cfbce9b4b2666e2f86861d903409042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# List of files that need to be packaged as resources.
# This file exists solely because of unit tests that need access to this
# information as well. This was previosly handled by referrencing a qrc
# file with the same information

set(corelib_mimetypes_resource_file
    "${CMAKE_CURRENT_LIST_DIR}/mime/packages/freedesktop.org.xml"
)

function(corelib_add_mimetypes_resources target)
    set(source_file "${corelib_mimetypes_resource_file}")
    set_source_files_properties("${source_file}"
        PROPERTIES QT_RESOURCE_ALIAS "freedesktop.org.xml"
    )
    qt_add_resource(${target} "mimetypes"
        PREFIX
            "/qt-project.org/qmime/packages"
        FILES
            "${source_file}"
    )
endfunction()