Changeset 133

Show
Ignore:
Timestamp:
04/29/06 17:24:24 (3 years ago)
Author:
aldacron
Message:

* added echo statements to build scripts to indicate if you are building a debug or release version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build-config.sh

    r126 r133  
    88BUILD_CMD="build" 
    99BUILD_TYPE="-debug -g" 
     10BUILD_TEXT="Building debug version" 
    1011 
    1112for Param in $@; do 
    1213    if [ $Param == '-release' ]; then 
    1314        BUILD_TYPE="-release -O" 
     15        BUILD_TEXT= "Building release version" 
    1416    elif [ $Param == '-cleanlib' ]; then 
    1517        rm -f ./lib/* 
     
    1719done 
    1820 
     21echo "$BUILD_TEXT" 
    1922echo "$BUILD_CMD -cleanup -IDerelictUtil -allobj -w $BUILD_TYPE" > build-args 
  • trunk/buildconfig.bat

    r116 r133  
    1414if %1.==release. ( 
    1515    set BRF=build_release.brf 
     16    echo Building release version.   
    1617) else ( 
    1718    set BRF=build_dbg.brf 
     19    echo Building debug version.     
    1820) 
    1921