factor/extra/gstreamer/base/ffi/ffi.factor

23 lines
457 B
Factor
Raw Normal View History

2010-07-23 13:17:07 -04:00
! 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 ;
2010-07-23 13:17:07 -04:00
IN: gstreamer.base.ffi
<<
"gstreamer.ffi" require
>>
LIBRARY: gstreamer.base
2010-07-23 13:17:07 -04:00
<<
"gstreamer.base" {
{ [ os windows? ] [ drop ] }
2010-07-23 13:17:07 -04:00
{ [ os macosx? ] [ drop ] }
{ [ os unix? ] [ "libgstbase-0.10.so" cdecl add-library ] }
} cond
>>
2011-03-15 13:01:18 -04:00
GIR: GstBase-0.10.gir
2010-07-23 13:17:07 -04:00