factor/libs/usb/load.factor

14 lines
301 B
Factor
Raw Permalink Normal View History

2006-09-14 23:04:43 -04:00
! Copyright (C) 2006 Chris Double.
! See http://factorcode.org/license.txt for BSD license.
2006-09-14 23:12:19 -04:00
USING: kernel ;
2006-09-14 23:04:43 -04:00
2006-11-28 21:57:29 -05:00
PROVIDE: libs/usb
2006-10-21 02:40:38 -04:00
{ +files+ {
2006-09-14 23:12:19 -04:00
"usb-common.factor"
{ "usb-unix.factor" [ unix? ] }
{ "usb-win32.factor" [ win32? ] }
2006-09-14 23:20:26 -04:00
{ "usb-macosx.factor" [ macosx? ] }
2006-09-14 23:04:43 -04:00
"usb.factor"
"usb.facts"
2006-10-21 03:00:35 -04:00
} } ;