23 lines
465 B
Factor
23 lines
465 B
Factor
! Copyright (C) 2010 Anton Gorenko.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
USING: alien alien.libraries alien.syntax combinators
|
|
gobject-introspection kernel system vocabs ;
|
|
IN: clutter.json.ffi
|
|
|
|
<<
|
|
"gobject.ffi" require
|
|
"gio.ffi" require
|
|
>>
|
|
|
|
LIBRARY: clutter.json
|
|
|
|
<<
|
|
"clutter.json" {
|
|
{ [ os windows? ] [ drop ] }
|
|
{ [ os macosx? ] [ drop ] }
|
|
{ [ os unix? ] [ "libclutter-glx-1.0.so" cdecl add-library ] }
|
|
} cond
|
|
>>
|
|
|
|
GIR: Json-1.0.gir
|