summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_add_resource_prefix/CMakeLists.txt
blob: 65faa4cb095a63310b5e3fc7e8545ca563355778 (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
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

cmake_minimum_required(VERSION 3.16)

project(test_add_resource_prefix)

find_package(Qt6 REQUIRED
    COMPONENTS Core Test
)

set(CMAKE_AUTOMOC ON)

add_executable(test_add_resource_prefix main.cpp)

# Tests if "/" is being used when PREFIX is missing
qt_add_resources(test_add_resource_prefix "resources_without_prefix"
    FILES resource_file.txt)

# Tests if the PREFIX parameter is being respected
qt_add_resources(test_add_resource_prefix "resources_with_prefix"
    PREFIX "/resources"
    FILES resource_file.txt)

target_link_libraries(test_add_resource_prefix PRIVATE Qt::Core Qt::Test)