27 lines
593 B
Prolog
27 lines
593 B
Prolog
include(../nymea-remoteproxy.pri)
|
|
|
|
TEMPLATE = lib
|
|
TARGET = nymea-remoteproxyclient
|
|
|
|
HEADERS += \
|
|
remoteproxyconnector.h \
|
|
websocketconnector.h \
|
|
socketconnector.h \
|
|
jsonrpcclient.h
|
|
|
|
|
|
SOURCES += \
|
|
remoteproxyconnector.cpp \
|
|
websocketconnector.cpp \
|
|
socketconnector.cpp \
|
|
jsonrpcclient.cpp
|
|
|
|
|
|
# install header file with relative subdirectory
|
|
for(header, HEADERS) {
|
|
path = /usr/include/nymea-remoteproxyclient/$${dirname(header)}
|
|
eval(headers_$${path}.files += $${header})
|
|
eval(headers_$${path}.path = $${path})
|
|
eval(INSTALLS *= headers_$${path})
|
|
}
|