]> gitweb.factorcode.org Git - factor.git/blob - extra/gstreamer/net/ffi/ffi.factor
859c6c2656ec1ca9f4e04f173ea4a214bff3f760
[factor.git] / extra / gstreamer / net / ffi / ffi.factor
1 ! Copyright (C) 2010 Anton Gorenko.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien alien.libraries alien.syntax combinators
4 gobject-introspection kernel system vocabs.loader ;
5 IN: gstreamer.net.ffi
6
7 <<
8 "gstreamer.ffi" require
9 >>
10
11 LIBRARY: gstreamer.net
12
13 <<
14 "gstreamer.net" {
15     { [ os winnt? ] [ drop ] }
16     { [ os macosx? ] [ drop ] }
17     { [ os unix? ] [ "libgstnet-0.10.so" cdecl add-library ] }
18 } cond
19 >>
20
21 GIR: GstNet-0.10.gir
22