2005-10-18 20:19:10 -04:00
|
|
|
USING: alien io kernel parser sequences ;
|
|
|
|
|
2005-10-29 23:25:38 -04:00
|
|
|
{
|
|
|
|
{ [ os "macosx" = ] [ ] }
|
|
|
|
{ [ os "win32" = ] [
|
2005-10-18 20:19:10 -04:00
|
|
|
"gl" "opengl32.dll" "stdcall" add-library
|
|
|
|
"glu" "glu32.dll" "stdcall" add-library
|
2005-10-29 23:25:38 -04:00
|
|
|
] }
|
|
|
|
{ [ t ] [
|
2005-11-22 21:44:06 -05:00
|
|
|
"gl" "libGL.so.1" "cdecl" add-library
|
|
|
|
"glu" "libGLU.so.1" "cdecl" add-library
|
2005-10-29 23:25:38 -04:00
|
|
|
] }
|
|
|
|
} cond
|
2005-10-12 00:14:46 -04:00
|
|
|
|
|
|
|
[
|
|
|
|
"/library/opengl/gl.factor"
|
|
|
|
"/library/opengl/glu.factor"
|
2005-10-13 01:48:16 -04:00
|
|
|
"/library/opengl/opengl-utils.factor"
|
2005-10-12 00:14:46 -04:00
|
|
|
] [
|
|
|
|
dup print run-resource
|
|
|
|
] each
|