Returns a File representing the directory where native libs for the
current platform are located.
(defn find-native-lib-path
"Returns a File representing the directory where native libs for the
current platform are located."
[project]
(let [osdir (name (get-os))
archdir (name (get-arch))
f (file "native" osdir archdir)]
(if (.exists f)
f
nil)))
Comments top
No comments for find-native-lib-path. Log in to add a comment.