mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-15 14:51:14 -08:00
24 lines
420 B
Prolog
24 lines
420 B
Prolog
QT += core androidextras bluetooth remoteobjects
|
|
TEMPLATE = lib
|
|
CONFIG += dll
|
|
INCLUDEPATH += $$PWD
|
|
TARGET = service
|
|
DESTDIR = ../../build-android
|
|
|
|
HEADERS += \
|
|
../ble/ble.h \
|
|
../ble/ble_meshtastic.h \
|
|
qtandroidservice_ro.h
|
|
|
|
SOURCES += \
|
|
../ble/ble.cpp \
|
|
../ble/ble_meshtastic.cpp \
|
|
main.cpp
|
|
|
|
REPC_SOURCE += qtandroidservice.rep
|
|
|
|
32bit {
|
|
ANDROID_ABIS = "armeabi-v7a"
|
|
} else {
|
|
ANDROID_ABIS = "arm64-v8a"
|
|
}
|