64007c7497
Add support for downloading files from the web server to the in-memory file system at application load time. See included documentation for usage. This preload functionality is different from Emscripten's --preload-file and --embed-file in that the files are not packed to a single data file or embedded in the JavaScript runtime. Instead, the files are downloaded individually from the web server, which means that they can be cached individually, and also updated individually without rebuilding the application. Any file type can be preloaded. The primary use case (at the moment) is preloading Qt plugins and QML imports. Pick-to: 6.6 Task-number: QTBUG-63925 Change-Id: I2b71b0d6a2c12ecd3ec58e319c679cd3f6b16631 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
46 lines
1.5 KiB
CMake
46 lines
1.5 KiB
CMake
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_internal_add_manual_test(tst_qtloader_integration
|
|
GUI
|
|
SOURCES
|
|
main.cpp
|
|
LIBRARIES
|
|
Qt::Core
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
Qt::Widgets
|
|
)
|
|
|
|
set_target_properties(tst_qtloader_integration PROPERTIES QT_WASM_EXTRA_EXPORTED_METHODS "ENV")
|
|
|
|
add_custom_command(
|
|
TARGET tst_qtloader_integration POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tst_qtloader_integration.html
|
|
${CMAKE_CURRENT_BINARY_DIR}/tst_qtloader_integration.html)
|
|
|
|
add_custom_command(
|
|
TARGET tst_qtloader_integration POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../../../src/plugins/platforms/wasm/qtloader.js
|
|
${CMAKE_CURRENT_BINARY_DIR}/qtloader.js)
|
|
|
|
add_custom_command(
|
|
TARGET tst_qtloader_integration POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../shared/testrunner.js
|
|
${CMAKE_CURRENT_BINARY_DIR}/testrunner.js)
|
|
|
|
add_custom_command(
|
|
TARGET tst_qtloader_integration POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_body.js
|
|
${CMAKE_CURRENT_BINARY_DIR}/test_body.js)
|
|
|
|
add_custom_command(
|
|
TARGET tst_qtloader_integration POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preload.json
|
|
${CMAKE_CURRENT_BINARY_DIR}/preload.json)
|