18 lines
449 B
Factor
18 lines
449 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: atk.ffi
|
|
|
|
<< "gobject.ffi" require >>
|
|
|
|
LIBRARY: atk
|
|
|
|
<< "atk" {
|
|
{ [ os windows? ] [ "libatk-1.0-0.dll" ] }
|
|
{ [ os macosx? ] [ "libatk-1.0.dylib" ] }
|
|
{ [ os unix? ] [ "libatk-1.0.so" ] }
|
|
} cond cdecl add-library >>
|
|
|
|
GIR: vocab:atk/Atk-1.0.gir
|