Fix generating of Android deployment config in Multi-Config build
Add the config-specific suffix to the generated Android deployment
config file.
Amends d20f4ae706
Change-Id: If1755baf5548adb4d95733477d8b5af85e1fd2dd
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
bb10
parent
04ec14105e
commit
a41d9bcac9
|
|
@ -54,7 +54,8 @@ function(qt6_android_generate_deployment_settings target)
|
|||
if (NOT target_output_name)
|
||||
set(target_output_name ${target})
|
||||
endif()
|
||||
set(deploy_file "${target_binary_dir}/android-${target_output_name}-deployment-settings.json")
|
||||
set(deploy_file
|
||||
"${target_binary_dir}/android-${target_output_name}-deployment-settings-$<CONFIG>.json")
|
||||
|
||||
set(file_contents "{\n")
|
||||
# content begin
|
||||
|
|
|
|||
Loading…
Reference in New Issue