Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Latest commit

 

History

History
63 lines (53 loc) · 1.75 KB

src.pro

File metadata and controls

63 lines (53 loc) · 1.75 KB
 
Jul 16, 2013
Jul 16, 2013
1
2
3
4
5
6
7
8
9
10
11
include(../config.pri)
TEMPLATE = lib
CONFIG += qt hide_symbols
CONFIG += create_pc create_prl no_install_prl
# 'contacts' is too generic for the target name - use 'contactcache'
TARGET = $${PACKAGENAME}
target.path = $$PREFIX/lib
INSTALLS += target
Jul 31, 2014
Jul 31, 2014
12
# version for generated pkgconfig files is defined in the spec file
Jul 16, 2013
Jul 16, 2013
13
14
15
16
17
QMAKE_PKGCONFIG_INCDIR = $$PREFIX/include/$${PACKAGENAME}
QMAKE_PKGCONFIG_LIBDIR = $$PREFIX/lib
QMAKE_PKGCONFIG_DESTDIR = pkgconfig
CONFIG += link_pkgconfig
Jan 28, 2014
Jan 28, 2014
18
19
20
21
22
packagesExist(mlite5) {
PKGCONFIG += mlite5
DEFINES += HAS_MLITE
} else {
warning("mlite not available. Some functionality may not work as expected.")
Jul 16, 2013
Jul 16, 2013
23
}
Jan 28, 2014
Jan 28, 2014
24
PKGCONFIG += mlocale5 mce
Jul 16, 2013
Jul 16, 2013
25
26
27
DEFINES += CONTACTCACHE_BUILD
Dec 10, 2013
Dec 10, 2013
28
29
30
31
# We need access to QtContacts private headers
QT += contacts-private
# We need the moc output for ContactManagerEngine from sqlite-extensions
Jan 28, 2014
Jan 28, 2014
32
extensionsIncludePath = $$system(pkg-config --cflags-only-I qtcontacts-sqlite-qt5-extensions)
Dec 10, 2013
Dec 10, 2013
33
34
35
VPATH += $$replace(extensionsIncludePath, -I, )
HEADERS += contactmanagerengine.h
Jul 16, 2013
Jul 16, 2013
36
SOURCES += \
May 27, 2014
May 27, 2014
37
$$PWD/cacheconfiguration.cpp \
Sep 9, 2013
Sep 9, 2013
38
$$PWD/seasidecache.cpp \
Jun 30, 2014
Jun 30, 2014
39
$$PWD/seasideexport.cpp \
Oct 21, 2013
Oct 21, 2013
40
$$PWD/seasideimport.cpp \
Dec 4, 2013
Dec 4, 2013
41
$$PWD/seasidepropertyhandler.cpp
Jul 16, 2013
Jul 16, 2013
42
43
HEADERS += \
May 27, 2014
May 27, 2014
44
$$PWD/cacheconfiguration.h \
Jul 16, 2013
Jul 16, 2013
45
46
$$PWD/contactcacheexport.h \
$$PWD/seasidecache.h \
Jun 30, 2014
Jun 30, 2014
47
$$PWD/seasideexport.h \
Oct 21, 2013
Oct 21, 2013
48
$$PWD/seasideimport.h \
Aug 7, 2013
Aug 7, 2013
49
$$PWD/synchronizelists.h \
Sep 9, 2013
Sep 9, 2013
50
$$PWD/seasidenamegrouper.h \
Dec 4, 2013
Dec 4, 2013
51
$$PWD/seasidepropertyhandler.h
Jul 16, 2013
Jul 16, 2013
52
53
headers.files = \
May 27, 2014
May 27, 2014
54
$$PWD/cacheconfiguration.h \
Jul 16, 2013
Jul 16, 2013
55
56
$$PWD/contactcacheexport.h \
$$PWD/seasidecache.h \
Jun 30, 2014
Jun 30, 2014
57
$$PWD/seasideexport.h \
Oct 21, 2013
Oct 21, 2013
58
$$PWD/seasideimport.h \
Aug 7, 2013
Aug 7, 2013
59
$$PWD/synchronizelists.h \
Sep 9, 2013
Sep 9, 2013
60
$$PWD/seasidenamegrouper.h \
Dec 4, 2013
Dec 4, 2013
61
$$PWD/seasidepropertyhandler.h
Jul 16, 2013
Jul 16, 2013
62
63
headers.path = $$PREFIX/include/$$TARGET
INSTALLS += headers