Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_SERVER/trunk/configure

    r16 r30  
    55set default_compile_flags  = "%PROD_FFLAGS" 
    66set has_use_vt             = FALSE 
     7set has_oasis              = FALSE 
    78 
    89top: 
     
    4748        set compile_flags="%DEBUG_FFLAGS" 
    4849        shift ; goto top 
     50 
    4951    case -use_vt 
    5052        set has_use_vt = TRUE 
    5153        shift ; goto top 
    5254         
     55    case -oasis 
     56        set has_oasis = TRUE 
     57        shift ; goto top 
     58    
    5359   default 
    5460        echo "unknown option "$1" , exiting..." 
     
    117123set LIB="$LIB $NETCDF_LIBDIR $NETCDF_LIB" 
    118124 
     125if ( $has_oasis == TRUE ) then 
     126  set INCDIR="$INCDIR $OASIS_INCDIR" 
     127  set LIB="$LIB $OASIS_LIBDIR $OASIS_LIB" 
     128  set CPP_KEY="$CPP_KEY USE_OASIS" 
     129endif 
     130 
    119131if ( $has_use_vt == TRUE ) then 
    120 set INCDIR="$INCDIR $VAMPIR_INCDIR" 
    121 set LIB="$LIB $VAMPIR_LIBDIR $VAMPIR_LIB" 
    122 set CPP_KEY="$CPP_KEY USE_VT" 
     132  set INCDIR="$INCDIR $VAMPIR_INCDIR" 
     133  set LIB="$LIB $VAMPIR_LIBDIR $VAMPIR_LIB" 
     134  set CPP_KEY="$CPP_KEY USE_VT" 
    123135endif 
     136 
    124137 
    125138 
Note: See TracChangeset for help on using the changeset viewer.