1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Add files and directories to ship with the application
- # by adapting the examples below.
- # file1.source = myfile
- dir1.source = audio/
- # file1
- DEPLOYMENTFOLDERS = dir1
- # Avoid auto screen rotation
- #DEFINES += ORIENTATIONLOCK
- # Needs to be defined for Symbian
- #DEFINES += NETWORKACCESS
- symbian:TARGET.UID3 = 0xE1B62BCF
- # If your application uses the Qt Mobility libraries, uncomment
- # the following lines and add the respective components to the
- # MOBILITY variable.
- CONFIG += mobility
- MOBILITY += multimedia
- QT += phonon
- SOURCES += main.cpp mainwindow.cpp \
- sens.cpp \
- accelerometerwidget.cpp \
- accelerometerclass.cpp
- HEADERS += mainwindow.h \
- sens.h \
- accelerometerwidget.h \
- accelerometerclass.h
- FORMS += mainwindow.ui
- # Please do not modify the following two lines. Required for deployment.
- include(deployment.pri)
- qtcAddDeployment()
- OTHER_FILES += \
- audio/CarAlarm.wav \
- audio/bip_car.wav
|