Changeset 2629

Show
Ignore:
Timestamp:
01/05/10 16:33:07
Author:
douglm
Message:

Add -client option to script so we can build and run the client application.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/quickstart/linux/bw

    r2625 r2629  
    4343  echo "   PROJECT optionally defines the package to build and is none or more of" 
    4444  echo "     -carddav     Target is for the CardDAV build" 
     45  echo "     -client      Target is for the bedework client application build" 
    4546  echo "     -monitor     Target is for the bedework monitor application" 
    4647  echo "     -naming      Target is for the abstract naming api" 
     
    213214# Projects we will build 
    214215pkgdefault=yes 
     216bedework= 
    215217carddav= 
    216218caldav= 
     219client= 
     220monitor= 
     221naming= 
     222tzsvr= 
    217223webdav= 
    218 bedework= 
    219 naming= 
    220 monitor= 
    221 tzsvr= 
    222224 
    223225action= 
     
    290292      shift 
    291293      ;; 
     294    -client) 
     295      client="yes" 
     296      pkgdefault= 
     297      shift 
     298      ;; 
    292299    -webdav) 
    293300      webdav="yes" 
     
    352359fi 
    353360 
     361if [ "$client" != "" ] ; then 
     362  cd $QUICKSTART_HOME/bwclient 
     363fi 
     364 
    354365if [ "$monitor" != "" ] ; then 
    355366  cd $QUICKSTART_HOME/MonitorApp