WebAssembly: Fix compilation of application on Windows host
When running configure on a Windows host, it would fail with the error that the copy statement was invalid, due to the forward slashes. This makes configure finish without errors. Task-number: QTBUG-72000 Change-Id: Id315d7436bbbfd2cd5c5f2dfcfe0c3dc3b9e34c2 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
This commit is contained in:
parent
c4daa2b527
commit
79e4fe54bf
@ -41,14 +41,14 @@ contains(TEMPLATE, .*app) {
|
||||
|
||||
appjs.name = application qtloader.js
|
||||
appjs.output = $$DESTDIR/qtloader.js
|
||||
appjs.commands = $$QMAKE_COPY $$WASM_PLUGIN_PATH/qtloader.js $$DESTDIR
|
||||
appjs.commands = $$QMAKE_COPY $$shell_path($$WASM_PLUGIN_PATH/qtloader.js) $$shell_path($$DESTDIR)
|
||||
appjs.input = $$WASM_PLUGIN_PATH/qtloader.js
|
||||
appjs.depends = $$appjs.input
|
||||
QMAKE_EXTRA_COMPILERS += appjs
|
||||
|
||||
appsvg.name = application qtlogo.svg
|
||||
appsvg.output = $$DESTDIR/qtlogo.svg
|
||||
appsvg.commands = $$QMAKE_COPY $$WASM_PLUGIN_PATH/qtlogo.svg $$DESTDIR
|
||||
appsvg.commands = $$QMAKE_COPY $$shell_path($$WASM_PLUGIN_PATH/qtlogo.svg) $$shell_path($$DESTDIR)
|
||||
appsvg.input = $$WASM_PLUGIN_PATH/qtlogo.svg
|
||||
appsvg.depends = $$appsvg.input
|
||||
QMAKE_EXTRA_COMPILERS += appsvg
|
||||
|
Loading…
Reference in New Issue
Block a user