OEM.wxi.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. *
  4. * Copyright (C) by Michael Schuster <michael@schuster.ms>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14. * for more details.
  15. *
  16. -->
  17. <Include>
  18. <!-- Changing the Vendor breaks registry (also NSIS) product detection -->
  19. <?define AppVendor = "@APPLICATION_VENDOR@" ?>
  20. <!-- App Defines -->
  21. <?define AppName = "@APPLICATION_NAME@" ?>
  22. <?define AppShortName = "@APPLICATION_EXECUTABLE@" ?>
  23. <?define AppIcon = "@APPLICATION_ICON_NAME@.ico" ?>
  24. <?define AppExe = "@APPLICATION_EXECUTABLE@.exe" ?>
  25. <?define AppHelpLink = "https://@APPLICATION_DOMAIN@/" ?>
  26. <?define AppInfoLink = "$(var.AppHelpLink)" ?>
  27. <?define AppCommandOpenUrlScheme = "@APPLICATION_URI_HANDLER_SCHEME@" ?>
  28. <!-- Custom license: To use it, also remove the "Skip the license page" stuff in the <UI> section
  29. and uncomment <WixVariable Id="WixUILicenseRtf"...
  30. <?define AppLicenseRtf = "path\License.rtf" ?>
  31. -->
  32. <!-- App Version -->
  33. <?define VerMajor = "@MIRALL_VERSION_MAJOR@" ?>
  34. <?define VerMinor = "@MIRALL_VERSION_MINOR@" ?>
  35. <?define VerRevision = "@MIRALL_VERSION_PATCH@" ?>
  36. <?define VerBuild = "@MIRALL_VERSION_BUILD@" ?>
  37. <?define VerStd = "$(var.VerMajor).$(var.VerMinor).$(var.VerRevision)" ?>
  38. <?define VerFull = "$(var.VerStd).$(var.VerBuild)" ?>
  39. <?define VerDesc = "@MIRALL_VERSION_STRING@ (Git revision @GIT_REVISION@)" ?>
  40. <!-- MSI upgrade support -->
  41. <?define UpgradeCode = "@WIN_MSI_UPGRADE_CODE@" ?>
  42. <!-- UI resources -->
  43. <?define UIBannerBmp = "banner.bmp" ?>
  44. <?define UIDialogBmp = "dialog.bmp" ?>
  45. </Include>