1 | INCLUDEPATH += $$PWD
|
---|
2 |
|
---|
3 | SOURCES += \
|
---|
4 | $$PWD/qdeclarativeutilmodule.cpp\
|
---|
5 | $$PWD/qdeclarativeview.cpp \
|
---|
6 | $$PWD/qdeclarativeconnections.cpp \
|
---|
7 | $$PWD/qdeclarativepackage.cpp \
|
---|
8 | $$PWD/qdeclarativeanimation.cpp \
|
---|
9 | $$PWD/qdeclarativesystempalette.cpp \
|
---|
10 | $$PWD/qdeclarativespringanimation.cpp \
|
---|
11 | $$PWD/qdeclarativesmoothedanimation.cpp \
|
---|
12 | $$PWD/qdeclarativestate.cpp\
|
---|
13 | $$PWD/qdeclarativetransitionmanager.cpp \
|
---|
14 | $$PWD/qdeclarativestateoperations.cpp \
|
---|
15 | $$PWD/qdeclarativepropertychanges.cpp \
|
---|
16 | $$PWD/qdeclarativestategroup.cpp \
|
---|
17 | $$PWD/qdeclarativetransition.cpp \
|
---|
18 | $$PWD/qdeclarativelistmodel.cpp\
|
---|
19 | $$PWD/qdeclarativelistaccessor.cpp \
|
---|
20 | $$PWD/qdeclarativeopenmetaobject.cpp \
|
---|
21 | $$PWD/qdeclarativetimeline.cpp \
|
---|
22 | $$PWD/qdeclarativetimer.cpp \
|
---|
23 | $$PWD/qdeclarativebind.cpp \
|
---|
24 | $$PWD/qdeclarativepropertymap.cpp \
|
---|
25 | $$PWD/qdeclarativepixmapcache.cpp \
|
---|
26 | $$PWD/qdeclarativebehavior.cpp \
|
---|
27 | $$PWD/qdeclarativefontloader.cpp \
|
---|
28 | $$PWD/qdeclarativestyledtext.cpp \
|
---|
29 | $$PWD/qdeclarativelistmodelworkeragent.cpp \
|
---|
30 | $$PWD/qlistmodelinterface.cpp
|
---|
31 |
|
---|
32 | HEADERS += \
|
---|
33 | $$PWD/qdeclarativeutilmodule_p.h\
|
---|
34 | $$PWD/qdeclarativeview.h \
|
---|
35 | $$PWD/qdeclarativeconnections_p.h \
|
---|
36 | $$PWD/qdeclarativepackage_p.h \
|
---|
37 | $$PWD/qdeclarativeanimation_p.h \
|
---|
38 | $$PWD/qdeclarativeanimation_p_p.h \
|
---|
39 | $$PWD/qdeclarativesystempalette_p.h \
|
---|
40 | $$PWD/qdeclarativespringanimation_p.h \
|
---|
41 | $$PWD/qdeclarativesmoothedanimation_p.h \
|
---|
42 | $$PWD/qdeclarativesmoothedanimation_p_p.h \
|
---|
43 | $$PWD/qdeclarativestate_p.h\
|
---|
44 | $$PWD/qdeclarativestateoperations_p.h \
|
---|
45 | $$PWD/qdeclarativepropertychanges_p.h \
|
---|
46 | $$PWD/qdeclarativestate_p_p.h\
|
---|
47 | $$PWD/qdeclarativetransitionmanager_p_p.h \
|
---|
48 | $$PWD/qdeclarativestategroup_p.h \
|
---|
49 | $$PWD/qdeclarativetransition_p.h \
|
---|
50 | $$PWD/qdeclarativelistmodel_p.h\
|
---|
51 | $$PWD/qdeclarativelistmodel_p_p.h\
|
---|
52 | $$PWD/qdeclarativelistaccessor_p.h \
|
---|
53 | $$PWD/qdeclarativeopenmetaobject_p.h \
|
---|
54 | $$PWD/qdeclarativenullablevalue_p_p.h \
|
---|
55 | $$PWD/qdeclarativetimeline_p_p.h \
|
---|
56 | $$PWD/qdeclarativetimer_p.h \
|
---|
57 | $$PWD/qdeclarativebind_p.h \
|
---|
58 | $$PWD/qdeclarativepropertymap.h \
|
---|
59 | $$PWD/qdeclarativepixmapcache_p.h \
|
---|
60 | $$PWD/qdeclarativebehavior_p.h \
|
---|
61 | $$PWD/qdeclarativefontloader_p.h \
|
---|
62 | $$PWD/qdeclarativestyledtext_p.h \
|
---|
63 | $$PWD/qdeclarativelistmodelworkeragent_p.h \
|
---|
64 | $$PWD/qlistmodelinterface_p.h
|
---|
65 |
|
---|
66 | contains(QT_CONFIG, xmlpatterns) {
|
---|
67 | QT+=xmlpatterns
|
---|
68 | SOURCES += $$PWD/qdeclarativexmllistmodel.cpp
|
---|
69 | HEADERS += $$PWD/qdeclarativexmllistmodel_p.h
|
---|
70 | }
|
---|