summaryrefslogtreecommitdiffstats
path: root/tests/manual/scattertest/CMakeLists.txt
blob: 89013c126d6d0110ea79058848936a54009b5edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

set(CMAKE_INCLUDE_CURRENT_DIR ON)

qt_internal_add_manual_test(scattertest
    GUI
    SOURCES
        main.cpp
        scatterchart.cpp scatterchart.h
    NO_PCH_SOURCES
        scatterchart.cpp # undef QT_NO_FOREACH
    )
target_link_libraries(scattertest PUBLIC
    Qt::Gui
    Qt::Widgets
    Qt::DataVisualization
    )