File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3237,13 +3237,13 @@ function(_qt_internal_write_target_deploy_info out_file)
3237
3237
set (content "" )
3238
3238
foreach (target IN LISTS targets )
3239
3239
set (var_prefix "__QT_DEPLOY_TARGET_${target} " )
3240
- string (APPEND content "set(${var_prefix} _FILE $<TARGET_FILE:${target} >)\n " )
3240
+ string (APPEND content "set(${var_prefix} _FILE \" $<TARGET_FILE:${target} >\" )\n " )
3241
3241
get_target_property (target_type ${target} TYPE )
3242
- string (APPEND content "set(${var_prefix} _TYPE ${target_type} )\n " )
3242
+ string (APPEND content "set(${var_prefix} _TYPE \" ${target_type} )\" \n " )
3243
3243
if (WIN32 AND CMAKE_VERSION GREATER_EQUAL "3.21"
3244
3244
AND target_type IN_LIST dynamic_target_types )
3245
3245
string (APPEND content
3246
- "set(${var_prefix} _RUNTIME_DLLS $<TARGET_RUNTIME_DLLS:${target} >)\n " )
3246
+ "set(${var_prefix} _RUNTIME_DLLS \" $<TARGET_RUNTIME_DLLS:${target} >\" )\n " )
3247
3247
endif ()
3248
3248
endforeach ()
3249
3249
file (GENERATE OUTPUT "${out_file} " CONTENT "${content} " )
You can’t perform that action at this time.
0 commit comments