Files
qad/make_libs.sh

10 lines
213 B
Bash
Executable File

#cmake .
#make install $@
for d in 'qad_widgets' 'qad_utils' 'qad_graphic' 'qad_sql_table' 'qad_application' 'qad_blockview' 'touch_widgets'; do
cd $d
echo "now in $(pwd -P)"
qmake
make install $@
cd ..
done