misb: add new plugin with elements to pack/unpack MISB IR over SDI data
This commit is contained in:
31
gst/misb/CMakeLists.txt
Normal file
31
gst/misb/CMakeLists.txt
Normal file
@@ -0,0 +1,31 @@
|
||||
set (SOURCES
|
||||
gstmisb.c
|
||||
gstmisbirpack.c
|
||||
gstmisbirunpack.c
|
||||
)
|
||||
|
||||
set (HEADERS
|
||||
gstmisbirpack.h
|
||||
gstmisbirunpack.h)
|
||||
|
||||
include_directories (AFTER
|
||||
${ORC_INCLUDE_DIR})
|
||||
|
||||
set (libname libgstmisb)
|
||||
|
||||
add_library (${libname} MODULE
|
||||
${SOURCES}
|
||||
${HEADERS})
|
||||
|
||||
target_link_libraries (${libname}
|
||||
${ORC_LIBRARIES}
|
||||
${GLIB2_LIBRARIES}
|
||||
${GOBJECT_LIBRARIES}
|
||||
${GSTREAMER_LIBRARY}
|
||||
${GSTREAMER_BASE_LIBRARY}
|
||||
${GSTREAMER_VIDEO_LIBRARY})
|
||||
|
||||
set (pdbfile "${CMAKE_CURRENT_BINARY_DIR}/\${CMAKE_INSTALL_CONFIG_NAME}/${libname}.pdb")
|
||||
install (FILES ${pdbfile} DESTINATION lib/gstreamer-1.0 COMPONENT pdb)
|
||||
install(TARGETS ${libname}
|
||||
LIBRARY DESTINATION lib/gstreamer-1.0)
|
||||
Reference in New Issue
Block a user