mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c8ce23e652
Former-commit-id: 390b832ba2d463710d4a063692f00b83a8c6c8ad
27 lines
848 B
CMake
27 lines
848 B
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}/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}/HsvTransform.h
|
|
${CURRENT_SOURCE_DIR}/HsvTransform.cpp
|
|
${CURRENT_HEADER_DIR}/RgbChannelTransform.h
|
|
${CURRENT_SOURCE_DIR}/RgbChannelTransform.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)
|