We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aeb345 commit 7308406Copy full SHA for 7308406
cmake/LSLCMake.cmake
@@ -173,8 +173,12 @@ function(installLSLApp target)
173
findQtInstallationTool("windeployqt")
174
install(CODE "
175
message (STATUS \"Running windeployqt on $<TARGET_FILE:${target}>\")
176
+ set(qml_dir $<TARGET_PROPERTY:${target},qml_directory>)
177
+ message(STATUS \"qml directory: \${qml_dir}\")
178
execute_process(
- COMMAND \"${QT_DEPLOYQT_EXECUTABLE}\" --no-translations
179
+ COMMAND \"${QT_DEPLOYQT_EXECUTABLE}\"
180
+ \$<\$<BOOL:\${qml_dir}>:--qmldir \${qml_dir}>
181
+ --no-translations
182
--no-system-d3d-compiler --no-opengl-sw
183
--no-compiler-runtime --dry-run --list mapping
184
\"$<TARGET_FILE:${target}>\"
0 commit comments