Initial implementation of NI IMAQdx element

This commit is contained in:
Joshua M. Doe
2013-01-25 14:30:45 -05:00
parent c3f2b1db5d
commit 6c745ca706
8 changed files with 1356 additions and 1 deletions

View File

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