29 |
31 |
30 # Input |
32 # Input |
31 HEADERS += inc/cntservicemainwindow.h \ |
33 HEADERS += inc/cntservicemainwindow.h \ |
32 inc/cntserviceviewmanager.h \ |
34 inc/cntserviceviewmanager.h \ |
33 inc/cntservicehandler.h \ |
35 inc/cntservicehandler.h \ |
34 inc/cntservicescontact.h \ |
|
35 inc/cntservicecontactfetchview.h \ |
36 inc/cntservicecontactfetchview.h \ |
36 inc/cntservicecontactselectionview.h \ |
37 inc/cntservicecontactselectionview.h \ |
37 inc/cntserviceeditview.h \ |
38 inc/cntserviceeditview.h \ |
38 inc/cntservicecontactcardview.h \ |
39 inc/cntservicecontactcardview.h \ |
39 inc/cntservicesubeditview.h \ |
40 inc/cntservicesubeditview.h \ |
40 inc/cntserviceassigncontactcardview.h |
41 inc/cntserviceassigncontactcardview.h \ |
|
42 inc/cntserviceviewfactory.h |
41 |
43 |
42 SOURCES += src/main.cpp \ |
44 SOURCES += src/main.cpp \ |
43 src/cntservicemainwindow.cpp \ |
45 src/cntservicemainwindow.cpp \ |
44 src/cntserviceviewmanager.cpp \ |
46 src/cntserviceviewmanager.cpp \ |
45 src/cntservicehandler.cpp \ |
47 src/cntservicehandler.cpp \ |
46 src/cntservicecontactfetchview.cpp \ |
48 src/cntservicecontactfetchview.cpp \ |
47 src/cntservicecontactselectionview.cpp \ |
49 src/cntservicecontactselectionview.cpp \ |
48 src/cntserviceeditview.cpp \ |
50 src/cntserviceeditview.cpp \ |
49 src/cntservicecontactcardview.cpp \ |
51 src/cntservicecontactcardview.cpp \ |
50 src/cntservicesubeditview.cpp \ |
52 src/cntservicesubeditview.cpp \ |
51 src/cntserviceassigncontactcardview.cpp |
53 src/cntserviceassigncontactcardview.cpp \ |
|
54 src/cntserviceviewfactory.cpp |
52 |
55 |
53 # capability |
56 # capability |
54 TARGET.CAPABILITY = ALL \ |
57 TARGET.CAPABILITY = CAP_APPLICATION |
55 -TCB |
|
56 |
58 |
57 TRANSLATIONS = contacts.ts |
59 TRANSLATIONS = contacts.ts |
58 |
60 |
59 TARGET.UID3 = 0x2002429B |
61 TARGET.UID3 = 0x2002429B |
60 |
62 |
61 LIBS += -lxqservice \ |
63 LIBS += -lxqservice \ |
62 -lxqserviceutil \ |
64 -lxqserviceutil \ |
63 -lhbcore \ |
65 -lhbcore \ |
64 -lqtcontacts \ |
66 -lqtcontacts \ |
65 -lmobcntmodel \ |
67 -lmobcntmodel \ |
66 -lpbkcommonui |
68 -lpbkcommonui \ |
|
69 -lqtversit \ |
|
70 -lcntimageutility |
67 |
71 |
68 SERVICE.FILE = service_conf.xml |
72 SERVICE.FILE = service_conf.xml |
69 SERVICE.OPTIONS = embeddable |
73 SERVICE.OPTIONS = embeddable |
70 SERVICE.OPTIONS += hidden |
74 SERVICE.OPTIONS += hidden |
71 |
|
72 # export the header file |
|
73 CNT_SERVICES_PUBLIC_HEADERS += cntservicescontact.h |
|
74 |
|
75 symbian { |
|
76 deploy.path = / |
|
77 headers.sources = $$CNT_SERVICES_PUBLIC_HEADERS |
|
78 headers.path = epoc32/include |
|
79 DEPLOYMENT += exportheaders |
|
80 |
|
81 for(header, headers.sources):BLD_INF_RULES.prj_exports += "./inc/$$header $$deploy.path$$headers.path/$$basename(header)" |
|
82 } |
|