22 lines
486 B
Factor
22 lines
486 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: gdk.gl.ffi
|
|
|
|
<<
|
|
"gdk.ffi" require
|
|
>>
|
|
|
|
LIBRARY: gdk.gl
|
|
|
|
<<
|
|
"gdk.gl" {
|
|
{ [ os windows? ] [ "libgdkglext-win32-1.0-0.dll" cdecl add-library ] }
|
|
{ [ os macosx? ] [ drop ] }
|
|
{ [ os unix? ] [ "libgdkglext-x11-1.0.so" cdecl add-library ] }
|
|
} cond
|
|
>>
|
|
|
|
GIR: vocab:gdk/gl/GdkGLExt-1.0.gir
|