mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
52 lines
973 B
CMake
52 lines
973 B
CMake
|
|
# Define the current source locations
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include)
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc)
|
|
|
|
add_subdirectory(hyperion)
|
|
add_subdirectory(commandline)
|
|
add_subdirectory(blackborder)
|
|
add_subdirectory(jsonserver)
|
|
|
|
if(ENABLE_BOBLIGHT_SERVER)
|
|
add_subdirectory(boblightserver)
|
|
endif()
|
|
|
|
if(ENABLE_FLATBUF_SERVER OR ENABLE_FLATBUF_CONNECT)
|
|
add_subdirectory(flatbufserver)
|
|
endif()
|
|
|
|
if(ENABLE_PROTOBUF_SERVER)
|
|
add_subdirectory(protoserver)
|
|
endif()
|
|
|
|
if(ENABLE_FORWARDER)
|
|
add_subdirectory(forwarder)
|
|
endif()
|
|
|
|
add_subdirectory(leddevice)
|
|
add_subdirectory(utils)
|
|
add_subdirectory(grabber)
|
|
add_subdirectory(webserver)
|
|
add_subdirectory(db)
|
|
add_subdirectory(api)
|
|
add_subdirectory(ssdp)
|
|
|
|
if(ENABLE_MDNS)
|
|
add_subdirectory(mdns)
|
|
endif()
|
|
|
|
if(ENABLE_EFFECTENGINE)
|
|
add_subdirectory(effectengine)
|
|
add_subdirectory(python)
|
|
endif()
|
|
|
|
if(ENABLE_CEC)
|
|
add_subdirectory(cec)
|
|
endif()
|
|
|
|
if(ENABLE_EXPERIMENTAL)
|
|
add_subdirectory(experimental)
|
|
endif()
|
|
|