2016-05-26 23:44:27 +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)
|
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
FILE ( GLOB Hyperion_SOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp" )
|
2016-05-26 23:44:27 +02:00
|
|
|
|
2017-08-04 23:08:15 +02:00
|
|
|
QT5_ADD_RESOURCES(Hyperion_RESOURCES_RCC ${CURRENT_SOURCE_DIR}/resource.qrc OPTIONS "-no-compress")
|
2016-05-26 23:44:27 +02:00
|
|
|
|
|
|
|
add_library(hyperion
|
|
|
|
${Hyperion_SOURCES}
|
|
|
|
${Hyperion_RESOURCES_RCC}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(hyperion
|
|
|
|
blackborder
|
|
|
|
hyperion-utils
|
|
|
|
leddevice
|
2017-03-21 17:55:46 +01:00
|
|
|
bonjour
|
2017-08-01 15:42:36 +02:00
|
|
|
effectengine
|
2016-05-26 23:44:27 +02:00
|
|
|
${QT_LIBRARIES}
|
|
|
|
)
|