我们正在尝试使用 ant4eclipse 构建一个 RCP 应用程序。我们的构建服务器运行 Red Hat Linux。建筑物本身似乎正在运行,但结果是适用于 linux 的应用程序/x 可执行文件。奇怪的是,我也无法让它在我的 Ubuntu 18.04 笔记本电脑上运行,但我认为这可能与发行版不兼容。无论哪种方式,构建似乎都是为运行构建脚本的平台构建产品,但我们需要一个适用于 windows 的 .exe 文件。在脚本中,我们具有以下属性:
<ant4eclipse:platformConfiguration id="win32.win32.x86"
windowingSystem="win32"
operatingSystem="win32"
architecture="x86" />
在构建产品时,我们使用以下参数:
<buildProduct
workspaceDirectory="${workspaceDirectory}"
productfile="${productFile}"
targetPlatformId="target.platform"
destination="${targetDirectory}"
clearDestination="true"
os="win32"
debug="true"/>
告诉 ant4eclipse 为 Windows 构建是否缺少任何东西,或者这里的某些参数可能有任何错误?
提前致谢。