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)
|
|
|
|
|
2019-02-03 14:36:57 +01:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../../libsrc/flatbufserver
|
|
|
|
)
|
|
|
|
|
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-10-13 00:06:31 +02:00
|
|
|
SET(Hyperion_RESOURCES ${CURRENT_SOURCE_DIR}/resource.qrc)
|
2016-05-26 23:44:27 +02:00
|
|
|
|
|
|
|
add_library(hyperion
|
|
|
|
${Hyperion_SOURCES}
|
2017-10-13 00:06:31 +02:00
|
|
|
${Hyperion_RESOURCES}
|
2016-05-26 23:44:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(hyperion
|
|
|
|
blackborder
|
|
|
|
hyperion-utils
|
2019-02-03 14:36:57 +01:00
|
|
|
flatbufserver
|
|
|
|
flatbuffers
|
2016-05-26 23:44:27 +02:00
|
|
|
leddevice
|
2017-03-21 17:55:46 +01:00
|
|
|
bonjour
|
2018-12-28 18:12:45 +01:00
|
|
|
boblightserver
|
2017-08-01 15:42:36 +02:00
|
|
|
effectengine
|
2019-07-12 16:54:26 +02:00
|
|
|
database
|
2016-05-26 23:44:27 +02:00
|
|
|
${QT_LIBRARIES}
|
|
|
|
)
|