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