]> gitweb.factorcode.org Git - factor.git/blob - extra/clutter/ffi/ffi.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / clutter / 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 cairo.ffi combinators
4 gobject-introspection kernel system vocabs ;
5 IN: clutter.ffi
6
7 <<
8 "gtk" require
9 "atk.ffi" require
10 "pango.cairo.ffi" require
11 "clutter.cogl.ffi" require
12 "clutter.json.ffi" require
13 >>
14
15 LIBRARY: clutter
16
17 <<
18 "clutter" {
19     { [ os windows? ] [ drop ] }
20     { [ os macosx? ] [ drop ] }
21     { [ os unix? ] [ "libclutter-glx-1.0.so" cdecl add-library ] }
22 } cond
23 >>
24
25 FOREIGN-RECORD-TYPE: cairo.Path cairo_path_t
26
27 GIR: Clutter-1.0.gir