build_SE.check_OS.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="../." name="build_SE.check_OS"
  3. xmlns:p5build_SE="http://biuro.biall-net.pl/build_SE.xsd"
  4. >
  5. <condition property="build_SE.check_OS.root" value="c:\">
  6. <os family="windows" />
  7. </condition>
  8. <condition property="sbuild_SE.check_OS.rootw.root" value="/">
  9. <os family="unix" />
  10. </condition>
  11. <!--Tell Ant to define the Ant Contrib tasks from the jar-->
  12. <!--<taskdef resource="net/sf/antcontrib/antcontrib.properties">
  13. <classpath>
  14. <pathelement location="path/to/ant-contrib-0.6.jar"/>
  15. </classpath>
  16. </taskdef>-->
  17. <!--Do your OS specific stuff-->
  18. <!--<target name="checkos">
  19. <if>
  20. <os family="unix"/>
  21. <then>
  22. <!-\-Do your Unix stuff-\->
  23. </then>
  24. <elseif>
  25. <os family="windows"/>
  26. <then>
  27. <!-\-Do your Windows stuff-\->
  28. </then>
  29. </elseif>
  30. </if>
  31. </target>-->
  32. </project>