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