lqml/examples/meshtastic/cpp/android_service/service.pro

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"
}