Skip to content
Snippets Groups Projects
Select Git revision
  • f74a00cbf10b39d21d445c229afa613f54bc0e96
  • master default protected
  • nightly/20250722.0
  • beta/202507211539
  • stable/20250718.0
  • nightly/20250718.0
  • nightly/20250714.0
  • beta/202507141552
  • beta/202506161038
  • stable/20250613.0
  • nightly/20250613.0
  • beta/202506101658
  • stable/20250610.0
  • nightly/20250610.0
  • beta/202506091027
  • beta/202506061543
  • nightly/20250605.0
  • beta/202506051039
  • beta/202506051002
  • beta/202506041611
  • beta/202506041335
  • beta/202505231812
22 results

windows_qt_deploy.cmake

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    windows_qt_deploy.cmake 577 B
    if (EXISTS ${TIME_STAMP_FILE})
        message("No need for Qt deployment in dir " ${QML_SRC_DIR})
    else()
        message("Qt deploying in dir " ${QML_SRC_DIR})
        execute_process(COMMAND "${WIN_DEPLOY_QT_PATH}/windeployqt.exe"
                                --verbose 1
                                --qmldir ${QML_SRC_DIR}
                                --release ${EXE_NAME})
        if (DEFINED OFF_SCREEN_PLUGIN_REQUESTED)
            # for not showing window when testing
            file(COPY "${OFF_SCREEN_PLUGIN_PATH}/qoffscreen.dll"
                 DESTINATION ${COPY_TO_PATH})
        endif()
    endif()