started knx integration

This commit is contained in:
John
2022-05-01 12:13:13 +02:00
parent ac7654e14d
commit 232164c866
12 changed files with 1335 additions and 0 deletions
+10
View File
@@ -101,6 +101,16 @@ if(HAVE_MQTT)
endif(mqtt STREQUAL ON)
endif(HAVE_MQTT)
find_library(HAVE_KNX eibclient)
if(HAVE_KNX)
option(knx "disable support for KNX handling." ON)
if(knx STREQUAL ON)
message(STATUS "KNX enabled")
else(knx STREQUAL ON)
unset(HAVE_KNX)
endif(knx STREQUAL ON)
endif(HAVE_KNX)
find_library(HAVE_SSL ssl)
find_library(LIB_CRYPTO crypto)
if(HAVE_SSL)