zcaudate
zcaudate

Reputation: 14258

packaging .so libraries in a leiningen project

I have got an .so file that needs to be on the class path in order for my program to work. what is the best way of packaging it in a leiningen project?


update

it worked really well... see https://github.com/zcaudate/sigar-native-deps for another example

Upvotes: 2

Views: 98

Answers (1)

Arthur Ulfeldt
Arthur Ulfeldt

Reputation: 91554

put them under a directory called native in your lein project as described here.

http://nakkaya.com/2010/04/05/managing-native-dependencies-with-leiningen/

Upvotes: 3

Related Questions