mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
34 lines
592 B
Prolog
34 lines
592 B
Prolog
QT += bluetooth sql network
|
|
TEMPLATE = lib
|
|
CONFIG += c++17 plugin release no_keywords
|
|
DEFINES += PLUGIN
|
|
INCLUDEPATH = /usr/local/include ../../../src/cpp
|
|
LIBS = -L/usr/local/lib -lecl
|
|
DESTDIR = ./
|
|
TARGET = qt
|
|
OBJECTS_DIR = ./tmp/
|
|
MOC_DIR = ./tmp/
|
|
|
|
HEADERS += \
|
|
ble.h \
|
|
ble_meshtastic.h \
|
|
qt.h
|
|
|
|
SOURCES += \
|
|
ble.cpp \
|
|
ble_meshtastic.cpp \
|
|
qt.cpp
|
|
|
|
linux {
|
|
LIBS += -L../../../platforms/linux/lib
|
|
}
|
|
|
|
macx {
|
|
LIBS += -L../../../platforms/macos/lib
|
|
}
|
|
|
|
win32 {
|
|
include(../../../src/windows.pri)
|
|
|
|
LIBS += -L../../../platforms/windows/lib
|
|
}
|