demos/declarative/minehunt/minehunt.pro
changeset 37 758a864f9613
parent 33 3e2da88830cd
equal deleted inserted replaced
36:ef0373b55136 37:758a864f9613
     1 TEMPLATE = lib
     1 TEMPLATE = app
     2 TARGET  = qmlminehuntplugin
     2 TARGET  = minehunt
     3 QT += declarative
     3 QT += declarative
     4 CONFIG += qt plugin
     4 CONFIG += qt plugin
     5 
     5 
     6 TARGET = $$qtLibraryTarget($$TARGET)
     6 # Input
     7 DESTDIR = MinehuntCore
     7 HEADERS += minehunt.h
       
     8 SOURCES += main.cpp minehunt.cpp
     8 
     9 
     9 # Input
    10 sources.files = minehunt.qml minehunt.pro MinehuntCore
    10 SOURCES += minehunt.cpp
    11 sources.path = $$[QT_INSTALL_DEMOS]/declarative/minehunt
       
    12 target.path = $$[QT_INSTALL_DEMOS]/declarative/minehunt
    11 
    13 
    12 sources.files = minehunt.qml minehunt.pro
    14 INSTALLS = sources target
    13 sources.path = $$[QT_INSTALL_DEMOS]/declarative/minehunt
       
    14 
       
    15 target.path = $$[QT_INSTALL_DEMOS]/declarative/minehunt/MinehuntCore
       
    16 
       
    17 MinehuntCore_sources.files = \
       
    18     MinehuntCore/Explosion.qml \
       
    19     MinehuntCore/Tile.qml \
       
    20     MinehuntCore/pics \
       
    21     MinehuntCore/qmldir
       
    22 MinehuntCore_sources.path = $$[QT_INSTALL_DEMOS]/declarative/minehunt/MinehuntCore
       
    23 
       
    24 INSTALLS = sources MinehuntCore_sources target
       
    25 
    15 
    26 symbian:{
    16 symbian:{
    27     TARGET.EPOCALLOWDLLDATA = 1
    17     TARGET.EPOCALLOWDLLDATA = 1
       
    18     TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
    28     include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
    19     include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
    29     TARGET.CAPABILITY = NetworkServices ReadUserData
    20     qmlminehuntfiles.sources = MinehuntCore minehunt.qml
    30     importFiles.sources = MinehuntCore/qmlminehuntplugin.dll \
    21     DEPLOYMENT = qmlminehuntfiles
    31     MinehuntCore/Explosion.qml \
       
    32     MinehuntCore/pics \
       
    33     MinehuntCore/qmldir
       
    34     importFiles.path = MinehuntCore
       
    35     DEPLOYMENT = importFiles
       
    36 }
    22 }
    37  
    23  
    38 INSTALLS = sources MinehuntCore_sources target