build.p5build.SYSTEM.xml 1.5 KB

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