examples/declarative/cppextensions/referenceexamples/properties/properties.pro
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 TEMPLATE = app
       
     2 TARGET = properties
       
     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 += properties.qrc
       
    14 
       
    15 target.path = $$[QT_INSTALL_EXAMPLES]/declarative/extending/properties
       
    16 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS properties.pro
       
    17 sources.path = $$[QT_INSTALL_EXAMPLES]/declarative/extending/properties
       
    18 INSTALLS += target sources