mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
f5317bc2d9
Former-commit-id: 590029949b79689ea05409149677e51b748cb64f
59 lines
1.5 KiB
CMake
59 lines
1.5 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
|
|
)
|
|
|
|
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}/LinearColorSmoothing.cpp
|
|
)
|
|
|
|
set(Hyperion_RESOURCES
|
|
${CURRENT_SOURCE_DIR}/resource.qrc
|
|
)
|
|
|
|
QT4_WRAP_CPP(Hyperion_HEADERS_MOC ${Hyperion_QT_HEADERS})
|
|
|
|
QT4_ADD_RESOURCES(Hyperion_RESOURCES_RCC ${Hyperion_RESOURCES} OPTIONS "-no-compress")
|
|
|
|
add_library(hyperion
|
|
${Hyperion_HEADERS}
|
|
${Hyperion_QT_HEADERS}
|
|
${Hyperion_HEADERS_MOC}
|
|
${Hyperion_SOURCES}
|
|
${Hyperion_RESOURCES_RCC}
|
|
)
|
|
|
|
target_link_libraries(hyperion
|
|
blackborder
|
|
hyperion-utils
|
|
leddevice
|
|
effectengine
|
|
serialport
|
|
${QT_LIBRARIES}
|
|
)
|