mirror of https://github.com/qt/qtdatavis3d.git
34 lines
733 B
CMake
34 lines
733 B
CMake
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
qt_internal_add_manual_test(surfacetest
|
|
GUI
|
|
SOURCES
|
|
buttonwrapper.cpp buttonwrapper.h
|
|
checkboxwrapper.cpp checkboxwrapper.h
|
|
graphmodifier.cpp graphmodifier.h
|
|
main.cpp
|
|
)
|
|
target_link_libraries(surfacetest PUBLIC
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
Qt::DataVisualization
|
|
)
|
|
|
|
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_internal_add_resource(surfacetest "surfacetest"
|
|
PREFIX
|
|
"/maps"
|
|
FILES
|
|
${surfacetest_resource_files}
|
|
)
|