examples/declarative/cppextensions/referenceexamples/methods/methods.pro
changeset 37 758a864f9613
equal deleted inserted replaced
36:ef0373b55136 37:758a864f9613
       
     1 TEMPLATE = app
       
     2 TARGET = methods
       
     3 DEPENDPATH += .
       
     4 INCLUDEPATH += .
       
     5 QT += declarative
       
     6 
       
     7 # Input
       
     8 SOURCES += main.cpp \
       
     9            person.cpp \
       
    10            birthdayparty.cpp 
       
    11 HEADERS += person.h \
       
    12            birthdayparty.h
       
    13 RESOURCES += methods.qrc
       
    14 
       
    15 target.path = $$[QT_INSTALL_EXAMPLES]/declarative/extending/methods
       
    16 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS methods.pro
       
    17 sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/extending/methods
       
    18 INSTALLS += target sources