factor/contrib/win32/load.factor

16 lines
379 B
Factor
Raw Normal View History

2005-11-28 22:31:00 -05:00
IN: win32
USING: alien compiler kernel parser sequences words ;
win32? [
"user" "user32.dll" "stdcall" add-library
"kernel" "kernel32.dll" "stdcall" add-library
] [
! something with wine here?
] if
[ "utils.factor" "types.factor" "kernel32.factor" "user32.factor" ]
[ "contrib/win32/" swap append run-file ] each
"win32" words [ try-compile ] each