21 lines
392 B
Factor
21 lines
392 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: gio.ffi
|
|
|
|
<<
|
|
"gobject.ffi" require
|
|
>>
|
|
|
|
LIBRARY: gio
|
|
|
|
<<
|
|
"gio" {
|
|
{ [ os windows? ] [ "libgio-2.0-0.dll" cdecl add-library ] }
|
|
{ [ os unix? ] [ drop ] }
|
|
} cond
|
|
>>
|
|
|
|
GIR: vocab:gio/Gio-2.0.gir
|