2013-07-26 22:38:34 +02:00
|
|
|
|
|
|
|
# Define the current source locations
|
|
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/hyperion)
|
|
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/hyperion)
|
|
|
|
|
2013-08-13 12:03:00 +02:00
|
|
|
# Group the headers that go through the MOC compiler
|
|
|
|
SET(Hyperion_QT_HEADERS
|
2013-08-14 17:02:09 +02:00
|
|
|
${CURRENT_HEADER_DIR}/Hyperion.h
|
2013-08-13 12:03:00 +02:00
|
|
|
)
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
SET(Hyperion_HEADERS
|
|
|
|
${CURRENT_HEADER_DIR}/ImageProcessor.h
|
|
|
|
${CURRENT_HEADER_DIR}/ImageProcessorFactory.h
|
2013-08-23 07:08:44 +02:00
|
|
|
${CURRENT_HEADER_DIR}/LedDevice.h
|
|
|
|
${CURRENT_HEADER_DIR}/LedString.h
|
2013-08-13 11:10:45 +02:00
|
|
|
${CURRENT_HEADER_DIR}/PriorityMuxer.h
|
|
|
|
|
2013-08-21 16:25:27 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/BlackBorderDetector.h
|
2013-08-23 07:08:44 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/BlackBorderProcessor.h
|
|
|
|
${CURRENT_SOURCE_DIR}/ImageToLedsMap.h
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTest.h
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceWs2801.h
|
2013-08-13 11:10:45 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
SET(Hyperion_SOURCES
|
2013-07-26 22:38:34 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/Hyperion.cpp
|
2013-08-13 11:10:45 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/ImageProcessor.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/ImageProcessorFactory.cpp
|
2013-08-23 07:08:44 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/LedString.cpp
|
2013-08-13 11:10:45 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/PriorityMuxer.cpp
|
|
|
|
|
2013-08-21 16:25:27 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/BlackBorderDetector.cpp
|
2013-08-23 07:08:44 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/BlackBorderProcessor.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/ImageToLedsMap.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceWs2801.cpp
|
|
|
|
${CURRENT_SOURCE_DIR}/LedDeviceTest.cpp
|
2013-08-13 11:10:45 +02:00
|
|
|
)
|
|
|
|
|
2013-08-21 16:25:27 +02:00
|
|
|
set(Hyperion_RESOURCES
|
|
|
|
${CURRENT_SOURCE_DIR}/resource.qrc
|
|
|
|
)
|
|
|
|
|
2013-08-13 12:03:00 +02:00
|
|
|
QT4_WRAP_CPP(Hyperion_HEADERS_MOC ${Hyperion_QT_HEADERS})
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-21 16:25:27 +02:00
|
|
|
qt4_add_resources(Hyperion_RESOURCES_RCC ${Hyperion_RESOURCES} OPTIONS "-no-compress")
|
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
add_library(hyperion
|
|
|
|
${Hyperion_HEADERS}
|
2013-08-13 12:03:00 +02:00
|
|
|
${Hyperion_QT_HEADERS}
|
2013-08-13 11:10:45 +02:00
|
|
|
${Hyperion_HEADERS_MOC}
|
|
|
|
${Hyperion_SOURCES}
|
2013-08-21 16:25:27 +02:00
|
|
|
${Hyperion_RESOURCES_RCC}
|
2013-07-26 22:38:34 +02:00
|
|
|
)
|
2013-08-01 17:08:58 +02:00
|
|
|
|
|
|
|
target_link_libraries(hyperion
|
2013-08-13 11:10:45 +02:00
|
|
|
hyperion-utils
|
2013-08-17 16:12:42 +02:00
|
|
|
${QT_LIBRARIES})
|