3

我正在尝试为 x64 系统编写 MSI 安装程序

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

  <?if $(var.Platform)=x64 ?>
  <?define win64Flag = "yes" ?>
  <?else ?>
  <?define win64Flag = "no" ?>
  <?endif ?>

</Wix>

这应该是使用内置变量 Platform 的一种非常简单的方法,但失败如下:

D:\>candle m.wxs
Microsoft (R) Windows Installer Xml Compiler version 3.5.2519.0
Copyright (C) Microsoft Corporation. All rights reserved.

m.wxs
D:\m.wxs(4) : error CNDL0150 : Undefined preprocessor variable '$(var.Platform)'.

所以这意味着这个“平台”不是一个内置变量?还是我做错了什么?

4

1 回答 1

2

不,它不是内置的。您可能不需要它。有关Candle 如何为您处理大部分细节,请参阅http://www.joyofsetup.com/2010/05/14/working-hard-or-hardly-working/ 。

于 2012-05-04T15:04:08.363 回答