summaryrefslogtreecommitdiffstats
path: root/tests/manual/barstest/CMakeLists.txt
blob: 2f52fba7673651bfac8c8477d73eaf48bff1b45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
qt_add_executable(barstest
    GUI
    SOURCES
        chart.cpp chart.h
        custominputhandler.cpp custominputhandler.h
        main.cpp
    PUBLIC_LIBRARIES
        Qt::Gui
        Qt::Widgets
        Qt::DataVisualization
)

set(barstest_resource_files
    "shuttle.obj"
    "shuttle.png"
)

qt_internal_add_resource(barstest "barstest"
    PREFIX
        "/"
    FILES
        ${barstest_resource_files}
)