Add debug CRT to WiX installer when building Debug configuration
This commit is contained in:
parent
39e0974f71
commit
31680ee252
|
@ -22,5 +22,9 @@
|
||||||
<?define QtPlatformPath="$(var.QtPath)\plugins\platforms" ?>
|
<?define QtPlatformPath="$(var.QtPath)\plugins\platforms" ?>
|
||||||
<?define OpenSSLPath="$(var.ExtPath)\openssl\windows\$(var.Platform)" ?>
|
<?define OpenSSLPath="$(var.ExtPath)\openssl\windows\$(var.Platform)" ?>
|
||||||
<?define OpenSSLBinPath="$(var.OpenSSLPath)\bin" ?>
|
<?define OpenSSLBinPath="$(var.OpenSSLPath)\bin" ?>
|
||||||
|
<?if $(var.Configuration) = "Debug" ?>
|
||||||
|
<?define CRT="$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC140_DebugCRT_$(var.Platform).msm" ?>
|
||||||
|
<?else ?>
|
||||||
<?define CRT="$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC140_CRT_$(var.Platform).msm" ?>
|
<?define CRT="$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC140_CRT_$(var.Platform).msm" ?>
|
||||||
|
<?endif ?>
|
||||||
</Include>
|
</Include>
|
Loading…
Reference in New Issue