Changeset 14 in flair-dev for trunk


Ignore:
Timestamp:
04/20/16 10:17:34 (8 years ago)
Author:
Sanahuja Guillaume
Message:

doc

Location:
trunk
Files:
1314 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/FlairCore/ConnectedSocket.h

    r13 r14  
    100100
    101101  //!! See Socket.h for a more generic implementation of network/host endianness
    102   // conversion
     102  //conversion
    103103  virtual uint16_t NetworkToHost16(uint16_t data) = 0;
    104104  virtual uint16_t HostToNetwork16(uint16_t data) = 0;
  • trunk/scripts/flair_compile_all.sh

    r12 r14  
    8787                cross_compile $FLAIR_ROOT/flair-src/demos $projects
    8888        done
     89
     90        for projects in simulator uav; do
     91                configure $FLAIR_ROOT/flair-src/demos/CircleFollower $projects
     92                compile $FLAIR_ROOT/flair-src/demos/CircleFollower $projects
     93                cross_compile $FLAIR_ROOT/flair-src/demos/CircleFollower $projects
     94        done
     95
    8996exit 0 
    9097        for projects in ex_opencv; do
     
    98105                compile $FLAIR_ROOT/uav_ex/ex_simulator_framework $projects
    99106                cross_compile $FLAIR_ROOT/uav_ex/ex_simulator_framework $projects
    100         done
    101 
    102         for projects in simulator uav; do
    103                 configure $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
    104                 compile $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
    105                 cross_compile $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
    106107        done
    107108
     
    147148fi
    148149
     150printf "Compile Flair libs documentation [Y/n]?"
     151read answer
     152
     153if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
     154        cd $FLAIR_ROOT/flair-src/lib
     155        doxygen Doxyfile.in
     156fi
     157
    149158printf "Compile Flair tools [Y/n]?"
    150159read answer
     
    162171
    163172exit 0
    164 printf "Compile Flair documentation [Y/n]?"
    165 read answer
    166173
    167 if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
    168         cd $FLAIR_ROOT/flair-src/lib
    169         doxygen Doxyfile.in
    170 fi
    171174
    172175
Note: See TracChangeset for help on using the changeset viewer.