build-samples.bat 728 B

12345678910111213141516171819202122
  1. @echo off
  2. rem Licensed Materials - Property of IBM
  3. rem
  4. rem IBM Cognos Products: CAMAAA
  5. rem
  6. rem (C) Copyright IBM Corp. 2005, 2012
  7. rem
  8. rem US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
  9. rem IBM Corp.
  10. rem Copyright © 2008 Cognos ULC, an IBM Company. All Rights Reserved.
  11. rem Cognos and the Cognos logo are trademarks of Cognos ULC (formerly Cognos Incorporated).
  12. rem Build the Authentication Provider samples.
  13. rem Compile all samples.
  14. for %%i IN (JDBCSample MultiTenancyTenantProviderSample MultiTenancyBoundingSetProviderSample TrustedSignonSample TrustedSignonMappingSample TrustedSignonReplaceSample) DO (
  15. cd %%i
  16. call build.bat
  17. cd ..
  18. )