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

Latest commit

 

History

History
64 lines (54 loc) · 1.74 KB

src.pro

File metadata and controls

64 lines (54 loc) · 1.74 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
Aug 6, 2013
Aug 6, 2013
12
# set version for generated pkgconfig files
Feb 10, 2014
Feb 10, 2014
13
VERSION=0.0.61
Jul 16, 2013
Jul 16, 2013
14
15
16
17
18
QMAKE_PKGCONFIG_INCDIR = $$PREFIX/include/$${PACKAGENAME}
QMAKE_PKGCONFIG_LIBDIR = $$PREFIX/lib
QMAKE_PKGCONFIG_DESTDIR = pkgconfig
CONFIG += link_pkgconfig
Jan 28, 2014
Jan 28, 2014
19
20
21
22
23
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
24
}
Jan 28, 2014
Jan 28, 2014
25
PKGCONFIG += mlocale5 mce
Jul 16, 2013
Jul 16, 2013
26
27
28
DEFINES += CONTACTCACHE_BUILD
Dec 10, 2013
Dec 10, 2013
29
30
31
32
# 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
33
extensionsIncludePath = $$system(pkg-config --cflags-only-I qtcontacts-sqlite-qt5-extensions)
Dec 10, 2013
Dec 10, 2013
34
35
36
VPATH += $$replace(extensionsIncludePath, -I, )
HEADERS += contactmanagerengine.h
Jul 16, 2013
Jul 16, 2013
37
SOURCES += \
May 27, 2014
May 27, 2014
38
$$PWD/cacheconfiguration.cpp \
Sep 9, 2013
Sep 9, 2013
39
$$PWD/seasidecache.cpp \
Jun 30, 2014
Jun 30, 2014
40
$$PWD/seasideexport.cpp \
Oct 21, 2013
Oct 21, 2013
41
$$PWD/seasideimport.cpp \
Dec 4, 2013
Dec 4, 2013
42
$$PWD/seasidepropertyhandler.cpp
Jul 16, 2013
Jul 16, 2013
43
44
HEADERS += \
May 27, 2014
May 27, 2014
45
$$PWD/cacheconfiguration.h \
Jul 16, 2013
Jul 16, 2013
46
47
$$PWD/contactcacheexport.h \
$$PWD/seasidecache.h \
Jun 30, 2014
Jun 30, 2014
48
$$PWD/seasideexport.h \
Oct 21, 2013
Oct 21, 2013
49
$$PWD/seasideimport.h \
Aug 7, 2013
Aug 7, 2013
50
$$PWD/synchronizelists.h \
Sep 9, 2013
Sep 9, 2013
51
$$PWD/seasidenamegrouper.h \
Dec 4, 2013
Dec 4, 2013
52
$$PWD/seasidepropertyhandler.h
Jul 16, 2013
Jul 16, 2013
53
54
headers.files = \
May 27, 2014
May 27, 2014
55
$$PWD/cacheconfiguration.h \
Jul 16, 2013
Jul 16, 2013
56
57
$$PWD/contactcacheexport.h \
$$PWD/seasidecache.h \
Jun 30, 2014
Jun 30, 2014
58
$$PWD/seasideexport.h \
Oct 21, 2013
Oct 21, 2013
59
$$PWD/seasideimport.h \
Aug 7, 2013
Aug 7, 2013
60
$$PWD/synchronizelists.h \
Sep 9, 2013
Sep 9, 2013
61
$$PWD/seasidenamegrouper.h \
Dec 4, 2013
Dec 4, 2013
62
$$PWD/seasidepropertyhandler.h
Jul 16, 2013
Jul 16, 2013
63
64
headers.path = $$PREFIX/include/$$TARGET
INSTALLS += headers