Changeset 8219 for trunk/tools


Ignore:
Timestamp:
Apr 10, 2002, 5:20:42 PM (23 years ago)
Author:
bird
Message:

ICATGam v4.0.6 RC1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/bin/buildenv.cmd

    r8215 r8219  
    1 /* $Id: buildenv.cmd,v 1.2 2002-04-07 23:01:53 bird Exp $
     1/* $Id: buildenv.cmd,v 1.3 2002-04-10 15:20:42 bird Exp $
    22 *
    33 * This is the master environment script. It contains settings for many
     
    9090            when (sEnv.i = 'emxpgcc') then      rc = EMXPGCC(fRM);
    9191            when (sEnv.i = 'icatgam') then      rc = ICATGam(fRM);
     92            when (sEnv.i = 'icatgam406rc1')then rc = ICATGam406RC1(fRM);
    9293            when (sEnv.i = 'icatpe') then       rc = ICATPe(fRM);
    9394            when (sEnv.i = 'ida') then          rc = IDA414(fRM);
     
    9697            when (sEnv.i = 'ida40') then        rc = IDA40(fRM);
    9798            when (sEnv.i = 'idasdk') then       rc = IDASDK(fRM);
    98             when (sEnv.i = 'msc60') then        rc = MSC60(fRM);
     99            when (sEnv.i = 'mscv6') then        rc = MSCV6(fRM);
     100            when (sEnv.i = 'msc60') then        rc = MSCV6(fRM);
    99101            when (sEnv.i = 'mysql') then        rc = mySQL(fRM);
    100102            when (sEnv.i = 'netqos2') then      rc = NetQOS2(fRM);
     
    180182        when (sProgram = 'db2v52') then     return 'f:\sqllib52';
    181183        when (sProgram = 'icatgam') then    return 'f:\icatos2';
     184        when (sProgram = 'icatgam406rc1') then return 'f:\icatos2.4.0.6.rc1';
    182185        when (sProgram = 'icatpe') then     return 'f:\icatpe';
    183186        when (sProgram = 'ida38') then      return 'f:\ida38';
     
    186189        when (sProgram = 'idasdk') then     return 'f:\idasdk';
    187190        when (sProgram = 'ddkbase') then    return 'f:\ddk\base';
    188         when (sProgram = 'msc60') then      return 'f:\ddktools\toolkits\msc60';
     191        when (sProgram = 'mscv6') then      return 'f:\ddktools\toolkits\msc60';
    189192        when (sProgram = 'mysql') then      return 'f:\mysql2';
    190193        when (sProgram = 'netqos2') then    return 'f:\netqos2';
     
    346349
    347350/*
     351 * ICAT Debugger
     352 */
     353ICATGam406RC1: procedure
     354    parse arg fRM
     355    sPathICAT   = QueryPath('icatgam406rc1');
     356    call EnvVar_Set      fRm, 'PATH_ICATGAM', sPathICAT;
     357    call EnvVar_AddFront fRm, 'beginlibpath',sPathICAT'\dll;'
     358    call EnvVar_AddFront fRm, 'path',        sPathICAT'\bin;'
     359    call EnvVar_AddFront fRm, 'dpath',       sPathICAT'\help;'
     360    call EnvVar_AddFront fRm, 'help',        sPathICAT'\help;'
     361return 0;
     362
     363
     364
     365/*
    348366 * ICAT Debugger for PE images.
    349367 */
     
    448466 * Microsoft C v6.0a
    449467 */
    450 MSC60: procedure
     468MSCV6: procedure
    451469    parse arg fRM
    452470
     
    454472     * Microsoft C v6.0a main directory.
    455473     */
    456     sPathMSC    = QueryPath('msc60');
     474    sPathMSC    = QueryPath('mscv6');
    457475    call EnvVar_Set      fRM, 'BUILD_ENV',  'MSCV6'
    458476    call EnvVar_Set      fRM, 'BUILD_PLATFORM', 'OS2'
Note: See TracChangeset for help on using the changeset viewer.