2010-05-09 13:21:12 -04:00
|
|
|
! Copyright (C) 2009 Anton Gorenko.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-05-23 06:05:34 -04:00
|
|
|
USING: alien alien.libraries combinators kernel system
|
|
|
|
gir glib gobject gio gmodule ;
|
2010-05-11 13:31:35 -04:00
|
|
|
EXCLUDE: alien.c-types => pointer ;
|
2010-05-09 13:21:12 -04:00
|
|
|
|
2010-05-23 06:05:34 -04:00
|
|
|
<<
|
|
|
|
"gdk.pixbuf" {
|
|
|
|
{ [ os winnt? ] [ "libgdk_pixbuf-2.0-0.dll" cdecl add-library ] }
|
|
|
|
{ [ os macosx? ] [ drop ] }
|
|
|
|
{ [ os unix? ] [ "libgdk_pixbuf-2.0.so" cdecl add-library ] }
|
|
|
|
} cond
|
|
|
|
>>
|
|
|
|
|
2010-05-09 13:21:12 -04:00
|
|
|
IN-GIR: gdk.pixbuf vocab:gdk/pixbuf/GdkPixbuf-2.0.gir
|
|
|
|
|