12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # -------------------------------------------------
- # Project created by QtCreator 2010-10-17T17:30:16
- # -------------------------------------------------
- QT += core \
- gui \
- network
- CONFIG += mobility debug inapppurchase
- TARGET = BookStore
- TEMPLATE = app
- VERSION = 0.1.1
- SOURCES += productinfo.cpp \
- buycatalog.cpp \
- main.cpp \
- mainwindow.cpp \
- downloadmanager.cpp
- HEADERS += productinfo.h \
- buycatalog.h \
- mainwindow.h \
- downloadmanager.h
- FORMS += productinfo.ui \
- buycatalog.ui \
- BuyAndDownloadExample.ui
- symbian: {
- TARGET.UID3 = 0xee774400
- ICON = icon.svg
-
- TARGET.CAPABILITY += NetworkServices
- addConfigFiles.sources = ./data/IAP_VARIANTID.txt
- addConfigFiles.path = .
- DEPLOYMENT += addConfigFiles
-
- debug: {
- MMP_RULES -= "PAGED"
- MMP_RULES += "UNPAGED"
- }
- }
- RESOURCES = BuyAndDownloadExample.qrc
|