build.p5build.SYSTEM.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="." name="p5build.SYSTEM" default="checkos"
  3. xmlns:p5build_SE="http://biuro.biall-net.pl/build_SE.xsd"
  4. >
  5. <include file="build_SE_basedir/build.p5build_SE.SYSTEM.xml" optional="true"/>
  6. <!--<include file="build.p5build.PRODUCT.xml" optional="true"/>-->
  7. <property name="p5build.SYSTEM.StandardOutPath" location="${p5build_SE.SYSTEM.StandardOutPath}/p5build.log"/>
  8. <property name="p5build.SYSTEM.StandardErrorPath" location="${p5build_SE.SYSTEM.StandardErrorPath}/p5build.log"/>
  9. <property name="Shared_Git_Root" location="../../../"/> <!-- do ustalenia gdzie trzymamy wszystkie repozytoria na serwerze -->
  10. <property name="remote.SE" location="${Shared_Git_Root}/se/SE"/>
  11. <property name="remote" location="${Shared_Git_Root}/se/SE/schema"/>
  12. <property name="p5build.remote.SE" location="${remote.SE}"/>
  13. <property name="p5build.remote" location="${remote}"/>
  14. <target name="checkos">
  15. <echo message="OS Name is: ${os.name}" />
  16. <echo message="OS Architecture is: ${os.arch}" />
  17. <echo message="OS Version is: ${os.version}" />
  18. <condition property="p5build.isWindows">
  19. <os family="windows" />
  20. </condition>
  21. <condition property="p5build.isLinux">
  22. <os family="unix" />
  23. </condition>
  24. <condition property="p5build.isMac">
  25. <os family="mac" />
  26. </condition>
  27. </target>
  28. </project>