Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

<project name="windows-task">

        <sequential>

                <condition property="windows">
                        <os family="windows"/>
                </condition>

                <condition property="windows-debug">
                        <and>
                                <os family="windows"/>
                                <isTrue value="${debug}"/>
                        </and>
                </condition>

                <condition property="windows-release">
                        <and>
                                <os family="windows"/>
                                <isFalse value="${debug}"/>
                        </and>
                </condition>

        </sequential>

</project>