13 lines
231 B
Factor
13 lines
231 B
Factor
|
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
|
USING: kernel ;
|
||
|
|
|
||
|
|
PROVIDE: contrib/cpuinfo
|
||
|
|
{ +files+ {
|
||
|
|
{ "os-windows.factor" [ windows? ] }
|
||
|
|
{ "os-unix.factor" [ unix? ] }
|
||
|
|
"cpuinfo.factor"
|
||
|
|
} }
|
||
|
|
{ +tests+ {
|
||
|
|
} } ;
|
||
|
|
|