mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
b37cbd26d5
* Channel adjustment config * Create RgbChannelAdjustment.h * Delete RgbChannelAdjustment.h * Create RgbChannelAdjustment.cpp * Create RgbChannelAdjustment.h * Delete RgbChannelAdjustment.cpp * Create ColorAdjustment.cpp * Delete RgbChannelAdjustment.h * Create ColorAdjustment.h * Update ColorAdjustment.h * Update ColorAdjustment.h * Update ColorAdjustment.h * Update ColorAdjustment.cpp * Update Hyperion.cpp * Update Hyperion.cpp * Update Hyperion.cpp * Update Hyperion.h * Create RgbChannelAdjustment.cpp * Create RgbChannelAdjustment.h * Create ColorAdjustment.h * Create MultiColorAdjustment.h * Update MultiColorAdjustment.h * Create MultiColorAdjustment.cpp * Delete ColorAdjustment.cpp * Delete ColorAdjustment.h * Update RgbChannelAdjustment.cpp * Update Hyperion.cpp * Update Hyperion.h * Update Hyperion.cpp * Bug fixes * Update hyperion.config.json * Add color adjustment to json server and client and adapt hyperion-remote * Change the color modification order * Minor bug fix * Create calibration Images folder * Create calibration Gamma folder * Create calibration RGB folder * Added files via upload * Delete .gitkeep * Delete .gitkeep * Added files via upload * Delete .gitkeep * Update color effect order and don't correct twice * Uploaded gradient images Former-commit-id: 8ab465e59834f12a21709a6f4546bd6808a2a495
73 lines
2.0 KiB
CMake
73 lines
2.0 KiB
CMake
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/hyperion)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/hyperion)
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
SET(Hyperion_QT_HEADERS
|
|
${CURRENT_HEADER_DIR}/Hyperion.h
|
|
|
|
${CURRENT_SOURCE_DIR}/LinearColorSmoothing.h
|
|
)
|
|
|
|
SET(Hyperion_HEADERS
|
|
${CURRENT_HEADER_DIR}/ImageProcessor.h
|
|
${CURRENT_HEADER_DIR}/ImageProcessorFactory.h
|
|
${CURRENT_HEADER_DIR}/ImageToLedsMap.h
|
|
${CURRENT_HEADER_DIR}/LedString.h
|
|
${CURRENT_HEADER_DIR}/PriorityMuxer.h
|
|
|
|
${CURRENT_SOURCE_DIR}/MultiColorTransform.h
|
|
${CURRENT_SOURCE_DIR}/MultiColorCorrection.h
|
|
${CURRENT_SOURCE_DIR}/MultiColorAdjustment.h
|
|
${CURRENT_HEADER_DIR}/MessageForwarder.h
|
|
)
|
|
|
|
SET(Hyperion_SOURCES
|
|
${CURRENT_SOURCE_DIR}/Hyperion.cpp
|
|
${CURRENT_SOURCE_DIR}/ImageProcessor.cpp
|
|
${CURRENT_SOURCE_DIR}/ImageProcessorFactory.cpp
|
|
${CURRENT_SOURCE_DIR}/LedString.cpp
|
|
${CURRENT_SOURCE_DIR}/PriorityMuxer.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/ImageToLedsMap.cpp
|
|
${CURRENT_SOURCE_DIR}/MultiColorTransform.cpp
|
|
${CURRENT_SOURCE_DIR}/MultiColorCorrection.cpp
|
|
${CURRENT_SOURCE_DIR}/MultiColorAdjustment.cpp
|
|
${CURRENT_SOURCE_DIR}/LinearColorSmoothing.cpp
|
|
${CURRENT_SOURCE_DIR}/MessageForwarder.cpp
|
|
)
|
|
|
|
set(Hyperion_RESOURCES
|
|
${CURRENT_SOURCE_DIR}/resource.qrc
|
|
)
|
|
|
|
if(ENABLE_QT5)
|
|
QT5_WRAP_CPP(Hyperion_HEADERS_MOC ${Hyperion_QT_HEADERS})
|
|
QT5_ADD_RESOURCES(Hyperion_RESOURCES_RCC ${Hyperion_RESOURCES} OPTIONS "-no-compress")
|
|
else(ENABLE_QT5)
|
|
QT4_WRAP_CPP(Hyperion_HEADERS_MOC ${Hyperion_QT_HEADERS})
|
|
QT4_ADD_RESOURCES(Hyperion_RESOURCES_RCC ${Hyperion_RESOURCES} OPTIONS "-no-compress")
|
|
endif(ENABLE_QT5)
|
|
|
|
add_library(hyperion
|
|
${Hyperion_HEADERS}
|
|
${Hyperion_QT_HEADERS}
|
|
${Hyperion_HEADERS_MOC}
|
|
${Hyperion_SOURCES}
|
|
${Hyperion_RESOURCES_RCC}
|
|
)
|
|
|
|
if(ENABLE_QT5)
|
|
qt5_use_modules(hyperion Widgets)
|
|
endif(ENABLE_QT5)
|
|
|
|
target_link_libraries(hyperion
|
|
blackborder
|
|
hyperion-utils
|
|
leddevice
|
|
effectengine
|
|
serialport
|
|
${QT_LIBRARIES}
|
|
)
|