edtpdvsrc: create source for EDT PDV frame grabbers

This commit is contained in:
Joshua M. Doe
2013-10-31 16:09:07 -04:00
parent f11372da5a
commit da31713498
7 changed files with 571 additions and 2 deletions

26
sys/edt/CMakeLists.txt Normal file
View File

@@ -0,0 +1,26 @@
add_definitions(-DHAVE_CONFIG_H)
set ( SOURCES
gstedtpdvsrc.c )
set ( HEADERS
gstedtpdvsrc.h )
include_directories ( AFTER
.
${EDT_INCLUDE_DIR} )
add_library ( libgstedt MODULE
${SOURCES}
${HEADERS} )
target_link_libraries ( libgsteuresys
${GLIB2_LIBRARIES}
${GSTREAMER_LIBRARIES}
${GSTREAMER_BASE_LIBRARY}
${GSTREAMER_INTERFACE_LIBRARY}
${GSTREAMER_VIDEO_LIBRARY}
${EDT_LIBRARIES})
install (TARGETS libgsteuresys
LIBRARY DESTINATION lib/gstreamer-0.10)