This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/server/server.pro
Michael Zanetti 167ac6f3c3 AWS: move from MbedTLS to OpenSSL for the connection
There seems to be a crash in Amazon's MbedTLS code, let's see
if openssl behaves better
2019-04-08 13:55:15 +02:00

26 lines
490 B
Prolog

include(../guh.pri)
TARGET = guhd
TEMPLATE = app
INCLUDEPATH += ../libguh-core ../libguh-core/jsonrpc ../libguh
target.path = /usr/bin
INSTALLS += target
QT *= sql xml websockets bluetooth dbus network
LIBS += -L$$top_builddir/libguh/ -lguh -L$$top_builddir/libguh-core -lguh-core -lssl -lcrypto -laws-iot-sdk-cpp
# Server files
include(qtservice/qtservice.pri)
SOURCES += main.cpp \
guhservice.cpp \
guhapplication.cpp
HEADERS += \
guhservice.h \
guhapplication.h