~mzanetti/+junk/ubuntudefence

« back to all changes in this revision

Viewing changes to run_on_ubuntu_touch.sh

  • Committer: Michael Zanetti
  • Date: 2014-07-14 21:04:30 UTC
  • Revision ID: michael.zanetti@canonical.com-20140714210430-56v22461zqrp57pd
improve performance, allow syncing animations with engine ticks

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
}
47
47
 
48
48
install_dependencies() {
49
 
    exec_with_adb apt-get --yes install build-essential qtbase5-dev qtdeclarative5-dev
 
49
    exec_with_adb apt-get --yes install build-essential qtbase5-dev qtdeclarative5-dev qt5-default
50
50
}
51
51
 
52
52
sync_code() {
76
76
 
77
77
run() {
78
78
#    exec_with_ssh "cd $CODE_DIR/$BUILD_DIR && QML2_IMPORT_PATH=../plugin ./$BINARY --desktop_file_hint=$CODE_DIR/$BINARY.desktop"
79
 
    exec_with_ssh "cd $CODE_DIR/$BUILD_DIR && ./$BINARY --desktop_file_hint=/usr/share/applications/calculator.desktop $RUN_OPTIONS"
 
79
    exec_with_ssh "cd $CODE_DIR/$BUILD_DIR && ./$BINARY --desktop_file_hint=/usr/share/applications/dialer-app.desktop $RUN_OPTIONS"
80
80
}
81
81
 
82
82
set -- `getopt -n$0 -u -a --longoptions="setup,gdb,click,help" "sgch" "$@"`