如何在ant构建文件中有条件地设置字符串属性?

时间:2018-10-30 22:19:43

标签: ant

在一个蚂蚁构建文件中,我想在Windows中将一个属性设置为一个值,而在没有时或通过多种操作系统的“切换”将其设置为另一个。

所需功能:

if(host is windows) {
   path.to.thing = "where it is on windows"; 
} else if (host is linux) {
   path.to.thing = "where it is on linux";
} else {
   ...
}

类似:??

<condition property="path.to.import">
    <os family="windows"/>
    <!-- somehting to do with the os family value ?? -->
    ...
</condition>

<import file="${path.to.import}"/>

??

0 个答案:

没有答案