2010-07-25 12:20:43 -04:00
|
|
|
! Copyright (C) 2010 Anton Gorenko.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-11-20 10:27:47 -05:00
|
|
|
USING: alien alien.libraries alien.syntax combinators
|
|
|
|
gobject-introspection kernel system vocabs.loader ;
|
2010-07-25 12:20:43 -04:00
|
|
|
IN: clutter.json.ffi
|
|
|
|
|
2010-11-20 10:27:47 -05:00
|
|
|
<<
|
|
|
|
"gobject.ffi" require
|
|
|
|
"gio.ffi" require
|
|
|
|
>>
|
|
|
|
|
|
|
|
LIBRARY: clutter.json
|
|
|
|
|
2010-07-25 12:20:43 -04:00
|
|
|
<<
|
|
|
|
"clutter.json" {
|
|
|
|
{ [ os winnt? ] [ drop ] }
|
|
|
|
{ [ os macosx? ] [ drop ] }
|
|
|
|
{ [ os unix? ] [ "libclutter-glx-1.0.so" cdecl add-library ] }
|
|
|
|
} cond
|
|
|
|
>>
|
|
|
|
|
2010-11-20 10:27:47 -05:00
|
|
|
GIR: vocab:clutter/json/Json-1.0.gir
|
2010-07-25 12:20:43 -04:00
|
|
|
|