Link bluetooth.

Implement class that talks to BLE miflora devices.
Have UI show current values from new class.
This commit is contained in:
2019-11-07 19:14:58 -05:00
parent 0f63b81cb7
commit 62bf803c71
5 changed files with 246 additions and 3 deletions

View File

@@ -1,8 +1,10 @@
set(qiflora_SRCS
miflora/miflora.cpp
main.cpp
)
qt5_add_resources(RESOURCES resources.qrc)
add_executable(qiflora ${qiflora_SRCS} ${RESOURCES})
target_link_libraries(qiflora Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg)
target_link_libraries(qiflora Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg Qt5::Bluetooth)
install(TARGETS qiflora ${KF5_INSTALL_TARGETS_DEFAULT_ARGS})