mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
* update * resolve qt5w * test * Go down cmake python search won the price for crazy lib searches! * 2.7 python forced, RPATH * upstream * ... * update * ... * 2.7.12 py it picks random versions... * max 7.12.5.... * Test 14.04 tests
23 lines
503 B
CMake
23 lines
503 B
CMake
# Define the current source locations
|
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/osx)
|
|
|
|
SET(OsxGrabberHEADERS
|
|
${CURRENT_HEADER_DIR}/OsxWrapper.h
|
|
${CURRENT_HEADER_DIR}/OsxFrameGrabber.h
|
|
)
|
|
|
|
SET(OsxGrabberSOURCES
|
|
${CURRENT_SOURCE_DIR}/OsxWrapper.cpp
|
|
${CURRENT_SOURCE_DIR}/OsxFrameGrabber.cpp
|
|
)
|
|
|
|
add_library(osx-grabber
|
|
${OsxGrabberHEADERS}
|
|
${OsxGrabberSOURCES}
|
|
)
|
|
|
|
target_link_libraries(osx-grabber
|
|
hyperion
|
|
${QT_LIBRARIES})
|