2017-08-25 18:34:26 -04:00
|
|
|
! Copyright (C) 2010 Joe Groff.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-02-16 16:32:14 -05:00
|
|
|
USING: alien.libraries io.pathnames io.pathnames.private kernel
|
2011-11-02 14:23:41 -04:00
|
|
|
system vocabs ;
|
2010-02-16 16:32:14 -05:00
|
|
|
IN: tools.deploy.libraries
|
|
|
|
|
|
|
|
HOOK: find-library-file os ( file -- path )
|
|
|
|
|
|
|
|
os windows?
|
|
|
|
"tools.deploy.libraries.windows"
|
|
|
|
"tools.deploy.libraries.unix" ? require
|