blob: a3397a458f2952fab8f0d4ac82bd4f0213a6c00e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
TEMPLATE = lib
TARGET = gato
VERSION = 1.0.0
QT -= gui
DEFINES += LIBGATO_LIBRARY
CONFIG += link_pkgconfig
PKGCONFIG += bluez
SOURCES += \
gatocentralmanager.cpp \
gatouuid.cpp \
gatoperipheral.cpp \
gatoaddress.cpp \
gatosocket.cpp \
helpers.cpp \
gatoservice.cpp \
gatocharacteristic.cpp \
gatodescriptor.cpp \
gatoattclient.cpp \
gatoconnectionparameters.cpp
HEADERS += libgato_global.h gato.h \
gatocentralmanager.h \
gatouuid.h \
gatoperipheral.h \
gatoaddress.h \
gatosocket.h \
helpers.h \
gatoperipheral_p.h \
gatocentralmanager_p.h \
gatoservice.h \
gatocharacteristic.h \
gatodescriptor.h \
gatoattclient.h \
gatoconnectionparameters.h
target.path = /usr/lib
INSTALLS += target
publicheaders.files = libgato_global.h gato.h \
gatocentralmanager.h gatoperipheral.h \
gatoservice.h gatocharacteristic.h gatodescriptor.h \
gatouuid.h gatoaddress.h gatoconnectionparameters.h
publicheaders.path = /usr/include/gato
INSTALLS += publicheaders
OTHER_FILES += rpm/libgato.yaml rpm/libgato.spec
|