2014-09-08 16:16:02 +02:00
|
|
|
|
|
|
|
# Define the current source locations
|
|
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include)
|
|
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc)
|
|
|
|
|
|
|
|
add_subdirectory(hyperion)
|
2016-08-28 15:10:43 +02:00
|
|
|
add_subdirectory(commandline)
|
2014-09-08 16:16:02 +02:00
|
|
|
add_subdirectory(blackborder)
|
|
|
|
add_subdirectory(jsonserver)
|
2022-01-07 14:47:51 +01:00
|
|
|
|
|
|
|
if(ENABLE_BOBLIGHT_SERVER)
|
|
|
|
add_subdirectory(boblightserver)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_FLATBUF_SERVER OR ENABLE_FLATBUF_CONNECT)
|
2018-12-28 18:12:45 +01:00
|
|
|
add_subdirectory(flatbufserver)
|
2022-01-07 14:47:51 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_PROTOBUF_SERVER)
|
2019-02-17 15:26:11 +01:00
|
|
|
add_subdirectory(protoserver)
|
2021-09-15 10:32:19 +02:00
|
|
|
endif()
|
2022-01-07 14:47:51 +01:00
|
|
|
|
|
|
|
if(ENABLE_FORWARDER)
|
|
|
|
add_subdirectory(forwarder)
|
|
|
|
endif()
|
|
|
|
|
2014-09-08 16:16:02 +02:00
|
|
|
add_subdirectory(leddevice)
|
|
|
|
add_subdirectory(utils)
|
|
|
|
add_subdirectory(grabber)
|
2018-12-27 23:11:32 +01:00
|
|
|
add_subdirectory(webserver)
|
2019-07-12 16:54:26 +02:00
|
|
|
add_subdirectory(db)
|
2018-12-27 23:11:32 +01:00
|
|
|
add_subdirectory(api)
|
2022-01-07 14:47:51 +01:00
|
|
|
add_subdirectory(ssdp)
|
2022-02-11 20:36:15 +01:00
|
|
|
|
2020-05-12 19:51:19 +02:00
|
|
|
if(ENABLE_AVAHI)
|
2020-07-20 20:06:41 +02:00
|
|
|
add_subdirectory(bonjour)
|
|
|
|
endif()
|
2020-08-02 22:37:52 +02:00
|
|
|
|
2022-02-11 20:36:15 +01:00
|
|
|
if(ENABLE_EFFECTENGINE)
|
|
|
|
add_subdirectory(effectengine)
|
|
|
|
add_subdirectory(python)
|
|
|
|
endif()
|
|
|
|
|
2022-01-07 14:47:51 +01:00
|
|
|
if(ENABLE_CEC)
|
|
|
|
add_subdirectory(cec)
|
|
|
|
endif()
|
|
|
|
|
2020-08-02 22:37:52 +02:00
|
|
|
if(ENABLE_EXPERIMENTAL)
|
|
|
|
add_subdirectory(experimental)
|
|
|
|
endif()
|
|
|
|
|