2013-08-23 18:24:10 +02:00
|
|
|
|
|
|
|
# Define the current source locations
|
|
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/bootsequence)
|
|
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/bootsequence)
|
|
|
|
|
|
|
|
# Group the headers that go through the MOC compiler
|
|
|
|
SET(BootsequenceHEADERS
|
2013-08-25 18:20:19 +02:00
|
|
|
${CURRENT_HEADER_DIR}/BootSequence.h
|
|
|
|
${CURRENT_HEADER_DIR}/BootSequenceFactory.h
|
2013-12-01 16:35:45 +01:00
|
|
|
${CURRENT_SOURCE_DIR}/EffectBootSequence.h
|
2013-08-23 18:24:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
SET(BootsequenceSOURCES
|
2013-08-25 18:20:19 +02:00
|
|
|
${CURRENT_SOURCE_DIR}/BootSequenceFactory.cpp
|
2013-12-01 16:35:45 +01:00
|
|
|
${CURRENT_SOURCE_DIR}/EffectBootSequence.cpp
|
2013-08-23 18:24:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
add_library(bootsequence
|
|
|
|
${BootsequenceHEADERS}
|
|
|
|
${BootsequenceSOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(bootsequence
|
|
|
|
hyperion
|
|
|
|
${QT_LIBRARIES})
|