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
42 lines
1.4 KiB
CMake
42 lines
1.4 KiB
CMake
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/utils)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/utils)
|
|
|
|
add_library(hyperion-utils
|
|
${CURRENT_HEADER_DIR}/ColorArgb.h
|
|
${CURRENT_SOURCE_DIR}/ColorArgb.cpp
|
|
${CURRENT_HEADER_DIR}/ColorBgr.h
|
|
${CURRENT_SOURCE_DIR}/ColorBgr.cpp
|
|
${CURRENT_HEADER_DIR}/ColorRgb.h
|
|
${CURRENT_SOURCE_DIR}/ColorRgb.cpp
|
|
${CURRENT_HEADER_DIR}/ColorRgba.h
|
|
${CURRENT_SOURCE_DIR}/ColorRgba.cpp
|
|
${CURRENT_HEADER_DIR}/Image.h
|
|
${CURRENT_HEADER_DIR}/Sleep.h
|
|
|
|
${CURRENT_HEADER_DIR}/PixelFormat.h
|
|
${CURRENT_HEADER_DIR}/VideoMode.h
|
|
|
|
${CURRENT_HEADER_DIR}/ImageResampler.h
|
|
${CURRENT_SOURCE_DIR}/ImageResampler.cpp
|
|
|
|
${CURRENT_HEADER_DIR}/HsvTransform.h
|
|
${CURRENT_SOURCE_DIR}/HsvTransform.cpp
|
|
${CURRENT_HEADER_DIR}/HslTransform.h
|
|
${CURRENT_SOURCE_DIR}/HslTransform.cpp
|
|
${CURRENT_HEADER_DIR}/RgbChannelTransform.h
|
|
${CURRENT_SOURCE_DIR}/RgbChannelTransform.cpp
|
|
${CURRENT_HEADER_DIR}/RgbChannelCorrection.h
|
|
${CURRENT_SOURCE_DIR}/RgbChannelCorrection.cpp
|
|
${CURRENT_HEADER_DIR}/RgbChannelAdjustment.h
|
|
${CURRENT_SOURCE_DIR}/RgbChannelAdjustment.cpp
|
|
|
|
${CURRENT_HEADER_DIR}/jsonschema/JsonFactory.h
|
|
${CURRENT_HEADER_DIR}/jsonschema/JsonSchemaChecker.h
|
|
${CURRENT_SOURCE_DIR}/jsonschema/JsonSchemaChecker.cpp
|
|
)
|
|
|
|
target_link_libraries(hyperion-utils
|
|
jsoncpp)
|