2010-07-23 13:17:07 -04:00
|
|
|
! Copyright (C) 2010 Anton Gorenko.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2011-03-05 06:34:01 -05:00
|
|
|
USING: alien alien.libraries alien.syntax combinators
|
|
|
|
gobject-introspection kernel system vocabs.loader ;
|
2010-07-23 13:17:07 -04:00
|
|
|
IN: gstreamer.controller.ffi
|
|
|
|
|
2011-03-05 06:34:01 -05:00
|
|
|
<<
|
|
|
|
"gstreamer.ffi" require
|
|
|
|
>>
|
|
|
|
|
|
|
|
LIBRARY: gstreamer.controller
|
|
|
|
|
2010-07-23 13:17:07 -04:00
|
|
|
<<
|
|
|
|
"gstreamer.controller" {
|
2011-09-18 21:25:06 -04:00
|
|
|
{ [ os windows? ] [ drop ] }
|
2010-07-23 13:17:07 -04:00
|
|
|
{ [ os macosx? ] [ drop ] }
|
|
|
|
{ [ os unix? ] [ "libgstcontroller-0.10.so" cdecl add-library ] }
|
|
|
|
} cond
|
|
|
|
>>
|
|
|
|
|
2011-03-15 13:01:18 -04:00
|
|
|
GIR: GstController-0.10.gir
|
2010-07-23 13:17:07 -04:00
|
|
|
|