factor/contrib/gl/load.factor

17 lines
410 B
Factor
Raw Normal View History

IN: gl
2005-06-12 05:00:54 -04:00
USING: alien compiler kernel parser sequences words ;
2005-05-22 22:03:54 -04:00
win32? [
"gl" "opengl32.dll" "stdcall" add-library
"glu" "glu32.dll" "stdcall" add-library
] [
"gl" "libGL.so" "cdecl" add-library
"glu" "libGLU.so" "cdecl" add-library
] ifte
[ "sdl-gl.factor" "gl.factor" "glu.factor" ]
2005-05-22 22:03:54 -04:00
[ "contrib/gl/" swap append run-file ] each
"gl" words [ try-compile ] each
"glu" words [ try-compile ] each