1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- # Add more folders to ship with the application, here
- folder_01.source = qml/ColouringBook
- folder_01.target = qml
- DEPLOYMENTFOLDERS = folder_01
- # Additional import path used to resolve QML modules in Creator's code model
- QML_IMPORT_PATH =
- # Avoid auto screen rotation
- DEFINES += ORIENTATIONLOCK
- # Needs to be defined for Symbian
- DEFINES += NETWORKACCESS
- symbian {
- TARGET.UID3 = 0xE2AE0F3F
- #add custom define to isolate the Symbian DRM feature
- DEFINES += USESYMBIANDRM
- contains(DEFINES, "USESYMBIANDRM"){
- message(Using Symbian DRM)
- HEADERS += IAP/drmfile.h IAP/Symbian/drmfile_p.h
- SOURCES += IAP/drmfile.cpp IAP/Symbian/drmfile_p.cpp
- LIBS += -lcaf \
- -lcafutils \
- -lapmime
- } else {
- message(Not using Symbian DRM)
- }
- # customized deployment rules for the data files
- include(data/production.pri)
- }
- # Define QMLJSDEBUGGER to allow debugging of QML in debug builds
- # (This might significantly increase build time)
- # DEFINES += QMLJSDEBUGGER
- # If your application uses the Qt Mobility libraries, uncomment
- # the following lines and add the respective components to the
- # MOBILITY variable.
- # CONFIG += mobility
- # MOBILITY +=
- # The .cpp file which was generated for your project. Feel free to hack it.
- SOURCES += main.cpp \
- coloringcanvas.cpp \
- qdeclarativepincharea.cpp \
- drmimageprovider.cpp \
- filepathconst.cpp \
- thumbnailimageprovider.cpp
- # Please do not modify the following two lines. Required for deployment.
- include(qmlapplicationviewer/qmlapplicationviewer.pri)
- qtcAddDeployment()
- HEADERS += \
- coloringcanvas.h \
- qdeclarativepincharea.h \
- drmimageprovider.h \
- filepathconst.h \
- thumbnailimageprovider.h
- OTHER_FILES += \
- data/production/drm/data/resourceid_524981/nemo_2colors_8bits.png \
- data/production/drm/data/resourceid_524981/mouse_2colors_8bits.png \
- data/production/drm/data/resourceid_524981/littlest_petshop_2colors_8bits.png \
- data/production/drm/data/resourceid_524981/cartman_2colors_8bits.png \
- data/production/drm/data/resourceid_524981/butterfly_2colors_8bits.png \
- data/production/drm/data/resourceid_524982/wreath_2colors_8bits.png \
- data/production/drm/data/resourceid_524982/two_stockings_2colors_8bits.png \
- data/production/drm/data/resourceid_524982/sign_2colors_8bits.png \
- data/production/drm/data/resourceid_524982/santa_2colors_8bits.png \
- data/production/drm/data/resourceid_524982/christmas_tree_2colors_8bits.png
|