# Generated from textureinthread.pro. cmake_minimum_required(VERSION 3.14) project(textureinthread LANGUAGES CXX) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) set(INSTALL_EXAMPLEDIR "examples") find_package(Qt6 COMPONENTS Core) find_package(Qt6 COMPONENTS Gui) find_package(Qt6 COMPONENTS Quick) add_qt_gui_executable(textureinthread ../shared/logorenderer.cpp ../shared/logorenderer.h main.cpp threadrenderer.cpp threadrenderer.h ) target_include_directories(textureinthread PUBLIC ../shared ) target_link_libraries(textureinthread PRIVATE Qt::CorePrivate Qt::GuiPrivate ) target_link_libraries(textureinthread PUBLIC Qt::Core Qt::Gui Qt::Quick ) # Resources: set(textureinthread_resource_files "error.qml" "main.qml" ) qt6_add_resources(textureinthread "textureinthread" PREFIX "/scenegraph/textureinthread" FILES ${textureinthread_resource_files} ) install(TARGETS textureinthread RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}" BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}" LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}" )