File: CMakeLists.txt

package info (click to toggle)
qt6-imageformats 6.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 11,540 kB
  • sloc: ansic: 95,999; cpp: 8,359; makefile: 18
file content (32 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (3)
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
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

#####################################################################
## tst_bench_qmng Binary:
#####################################################################

qt_internal_add_benchmark(tst_bench_qmng
    SOURCES
        tst_qmng.cpp
    LIBRARIES
        Qt::Gui
        Qt::Test
)

# Resources:
set(mng_resource_files
    "../../shared/images/mng/animation.mng"
    "../../shared/images/mng/ball.mng"
    "../../shared/images/mng/corrupt.mng"
    "../../shared/images/mng/dutch.mng"
    "../../shared/images/mng/fire.mng"
)

qt_internal_add_resource(tst_bench_qmng "mng"
    PREFIX
        "/"
    BASE
        "../../shared/images"
    FILES
        ${mng_resource_files}
)