iotechdaqx: Initial commit

Element works, but not configurable or thoroughly tested.
This commit is contained in:
Joshua M. Doe
2011-04-12 15:28:38 -04:00
parent 390ad794e0
commit f3084e002e
6 changed files with 636 additions and 0 deletions

View File

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