niimaqsrc: Move into subfolder of sys

This commit is contained in:
Joshua M. Doe
2011-01-19 11:00:46 -05:00
parent 44b78f5175
commit eccdfc2703
5 changed files with 28 additions and 27 deletions

25
sys/niimaq/CMakeLists.txt Normal file
View File

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