mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
569e59110e
* implement set videomode via json api * refactor grabbers: - new base class - move shared code to base class * fix osx * rework all cmakelist files with auto file collection. except leddevices (need further restructuring) * store current video and grabbing mode * add json stuff * remove grabbingmode - we do not want to expose it
37 lines
1.4 KiB
CMake
37 lines
1.4 KiB
CMake
find_package(PythonLibs 2.7 REQUIRED)
|
|
message( STATUS "PYTHON VERSIONS FOUND: ${PYTHONLIBS_VERSION_STRING}" )
|
|
|
|
# Include the python directory. Also include the parent (which is for example /usr/include)
|
|
# which may be required when it is not includes by the (cross-) compiler by default.
|
|
include_directories(${PYTHON_INCLUDE_DIRS} ${PYTHON_INCLUDE_DIRS}/..)
|
|
|
|
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/effectengine)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/effectengine)
|
|
|
|
FILE ( GLOB EffectEngineSOURCES "${CURRENT_HEADER_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.h" "${CURRENT_SOURCE_DIR}/*.cpp" )
|
|
FILE ( GLOB effectFiles RELATIVE ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/effects/* )
|
|
|
|
SET ( HYPERION_EFFECTS_RES "")
|
|
FOREACH( f ${effectFiles} )
|
|
GET_FILENAME_COMPONENT(fname ${f} NAME)
|
|
SET(HYPERION_EFFECTS_RES "${HYPERION_EFFECTS_RES}\n\t\t<file alias=\"/effects/${fname}\">${f}</file>")
|
|
ENDFOREACH()
|
|
CONFIGURE_FILE(${CURRENT_SOURCE_DIR}/EffectEngine.qrc.in ${CMAKE_BINARY_DIR}/EffectEngine.qrc )
|
|
|
|
SET(EffectEngine_RESOURCES ${CMAKE_BINARY_DIR}/EffectEngine.qrc)
|
|
|
|
qt5_add_resources(EffectEngine_RESOURCES_RCC ${EffectEngine_RESOURCES} ) # OPTIONS "-no-compress"
|
|
|
|
add_library(effectengine
|
|
${EffectEngine_RESOURCES_RCC}
|
|
${EffectEngineSOURCES}
|
|
)
|
|
|
|
target_link_libraries(effectengine
|
|
hyperion
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
${PYTHON_LIBRARIES}
|
|
)
|