build.bat 617 B

123456789101112131415161718192021
  1. rem
  2. rem Licensed Materials - Property of IBM
  3. rem
  4. rem IBM Cognos Products: cpscrn
  5. rem
  6. rem
  7. rem (C) Copyright IBM Corp. 2005, 2016
  8. rem
  9. rem US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  10. rem
  11. REM If CMM files are there then use the regular build.xml otherwise build for IBM Cognos Express (cx)
  12. IF NOT EXIST dwp_templates\CognosCustomDiagram.dwp GOTO runCX
  13. @echo off
  14. ..\..\..\jre\bin\java -classpath "../../../bin/ant.jar;../../../bin/ant-launcher.jar" org.apache.tools.ant.Main %*
  15. GOTO:EOF
  16. :runCX
  17. call .\build_cx\build
  18. GOTO :EOF