- Timestamp:
- Apr 8, 2016, 2:26:18 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/flair_compile_all.sh
r11 r12 74 74 75 75 function compile_tools() { 76 #for projects in FlairGCS Controller/DualShock3 Dbt2csv; do 77 for projects in FlairGCS Controller/DualShock3; do 76 for projects in FlairGCS Controller/DualShock3 Dbt2csv; do 78 77 configure $FLAIR_ROOT/flair-src/tools $projects 79 78 compile $FLAIR_ROOT/flair-src/tools $projects … … 83 82 84 83 function compile_demos() { 85 for projects in ex_framework ex_kalman_framework; do86 configure $FLAIR_ROOT/ uav_ex$projects87 compile $FLAIR_ROOT/ uav_ex$projects88 cross_compile $FLAIR_ROOT/ uav_ex$projects84 for projects in Sinus; do 85 configure $FLAIR_ROOT/flair-src/demos $projects 86 compile $FLAIR_ROOT/flair-src/demos $projects 87 cross_compile $FLAIR_ROOT/flair-src/demos $projects 89 88 done 90 89 exit 0 91 90 for projects in ex_opencv; do 92 91 configure $FLAIR_ROOT/uav_ex $projects … … 154 153 compile_tools 155 154 fi 155 156 printf "Compile demos [Y/n]?" 157 read answer 158 159 if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then 160 compile_demos 161 fi 162 156 163 exit 0 157 164 printf "Compile Flair documentation [Y/n]?" … … 163 170 fi 164 171 165 printf "Compile demos [Y/n]?"166 read answer167 168 if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then169 compile_examples170 fi171 172 172 173 exit 0
Note:
See TracChangeset
for help on using the changeset viewer.