2017-02-07 19:41:58 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Include>
|
2018-01-28 00:48:17 +03:00
|
|
|
<?define Name="Barrier" ?>
|
2019-04-12 17:29:27 +03:00
|
|
|
<?define Version="@BARRIER_WIX_VERSION@" ?>
|
2018-02-10 21:44:33 +03:00
|
|
|
<?define QtVersion="@QT_VERSION@" ?>
|
2018-01-28 00:48:17 +03:00
|
|
|
<?define Author="Debauchee Open Source Group" ?>
|
2017-02-10 19:08:56 +03:00
|
|
|
<?define BinPath="@CMAKE_RUNTIME_OUTPUT_DIRECTORY@/$(var.Configuration)" ?>
|
|
|
|
<?define ResPath="@CMAKE_CURRENT_SOURCE_DIR@/res" ?>
|
|
|
|
<?define ExtPath="@CMAKE_CURRENT_SOURCE_DIR@/ext" ?>
|
2017-02-07 19:41:58 +03:00
|
|
|
<?if $(var.Platform) = "x64" ?>
|
|
|
|
<?define ProgramFilesFolder="ProgramFiles64Folder" ?>
|
|
|
|
<?define PlatformSimpleName="64-bit" ?>
|
|
|
|
<?define UpgradeGuid="E8A4FA54-14B9-4FD1-8E00-7BC46555FDA0" ?>
|
2019-04-12 17:33:11 +03:00
|
|
|
<?define QtPath="@CMAKE_PREFIX_PATH@" ?>
|
2017-02-07 19:41:58 +03:00
|
|
|
<?else ?>
|
|
|
|
<?define ProgramFilesFolder="ProgramFilesFolder" ?>
|
|
|
|
<?define PlatformSimpleName="32-bit" ?>
|
|
|
|
<?define UpgradeGuid="BE0B9FD8-45E2-4A8E-A0D8-1F774D074A78" ?>
|
2019-04-12 17:33:11 +03:00
|
|
|
<?define QtPath="@CMAKE_PREFIX_PATH@" ?>
|
2017-02-07 19:41:58 +03:00
|
|
|
<?endif ?>
|
|
|
|
<?define QtBinPath="$(var.QtPath)\bin" ?>
|
|
|
|
<?define QtPlatformPath="$(var.QtPath)\plugins\platforms" ?>
|
2017-02-08 15:38:59 +03:00
|
|
|
<?define OpenSSLPath="$(var.ExtPath)\openssl\windows\$(var.Platform)" ?>
|
2017-02-08 18:21:14 +03:00
|
|
|
<?define OpenSSLBinPath="$(var.OpenSSLPath)\bin" ?>
|
2017-02-10 19:08:56 +03:00
|
|
|
</Include>
|