23 lines
519 B
Factor
23 lines
519 B
Factor
|
! Copyright (C) 2010 Anton Gorenko.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: alien alien.libraries alien.syntax combinators
|
||
|
gobject-introspection kernel system vocabs.loader ;
|
||
|
IN: gstreamer.controller.ffi
|
||
|
|
||
|
<<
|
||
|
"gstreamer.ffi" require
|
||
|
>>
|
||
|
|
||
|
LIBRARY: gstreamer.controller
|
||
|
|
||
|
<<
|
||
|
"gstreamer.controller" {
|
||
|
{ [ os winnt? ] [ drop ] }
|
||
|
{ [ os macosx? ] [ drop ] }
|
||
|
{ [ os unix? ] [ "libgstcontroller-0.10.so" cdecl add-library ] }
|
||
|
} cond
|
||
|
>>
|
||
|
|
||
|
GIR: vocab:gstreamer/controller/GstController-0.10.gir
|
||
|
|