euresys: Add new plugin for Euresys MultiCam driver (broken)

Untested, but compiles without error.
This commit is contained in:
Joshua M. Doe
2011-01-19 11:04:59 -05:00
parent b01ef05c41
commit 8549479892
7 changed files with 963 additions and 0 deletions

View File

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