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
|
2011-11-02 14:23:41 -04:00
|
|
|
gobject-introspection kernel system vocabs ;
|
2010-07-25 12:20:43 -04:00
|
|
|
IN: clutter.gtk.ffi
|
|
|
|
|
2010-11-20 10:27:47 -05:00
|
|
|
<<
|
|
|
|
"clutter.ffi" require
|
|
|
|
"gtk.ffi" require
|
|
|
|
>>
|
|
|
|
|
|
|
|
LIBRARY: clutter.gtk
|
|
|
|
|
2010-07-25 12:20:43 -04:00
|
|
|
<<
|
|
|
|
"clutter.gtk" {
|
2011-09-18 21:25:06 -04:00
|
|
|
{ [ os windows? ] [ drop ] }
|
2010-07-25 12:20:43 -04:00
|
|
|
{ [ os macosx? ] [ drop ] }
|
2011-05-21 10:58:09 -04:00
|
|
|
{ [ os unix? ] [ "libclutter-gtk-1.0.so" cdecl add-library ] }
|
2010-07-25 12:20:43 -04:00
|
|
|
} cond
|
|
|
|
>>
|
|
|
|
|
2011-05-21 10:58:09 -04:00
|
|
|
GIR: GtkClutter-1.0.gir
|