]> gitweb.factorcode.org Git - factor.git/blob - extra/clutter/gtk/ffi/ffi.factor
Remove Windows CE from core/ basis/ and build-support/
[factor.git] / extra / clutter / gtk / 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: clutter.gtk.ffi
6
7 <<
8 "clutter.ffi" require
9 "gtk.ffi" require
10 >>
11
12 LIBRARY: clutter.gtk
13
14 <<
15 "clutter.gtk" {
16     { [ os windows? ] [ drop ] }
17     { [ os macosx? ] [ drop ] }
18     { [ os unix? ] [ "libclutter-gtk-1.0.so" cdecl add-library ] }
19 } cond
20 >>
21
22 GIR: GtkClutter-1.0.gir
23