summaryrefslogtreecommitdiffstats
path: root/tests/manual/surfacetest/CMakeLists.txt
blob: 27539f888f7d165d3387f665a075df54cc69bc4b (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
26
27
qt_add_executable(surfacetest
    GUI
    SOURCES
        graphmodifier.cpp graphmodifier.h
        main.cpp
    PUBLIC_LIBRARIES
        Qt::Gui
        Qt::Widgets
)

set_source_files_properties("Heightmap.png"
    PROPERTIES QT_RESOURCE_ALIAS "map"
)
set_source_files_properties("mapimage.png"
    PROPERTIES QT_RESOURCE_ALIAS "mapimage"
)
set(surfacetest_resource_files
    "Heightmap.png"
    "mapimage.png"
)

qt_add_resource(surfacetest "surfacetest"
    PREFIX
        "/maps"
    FILES
        ${surfacetest_resource_files}
)