wdu / pywt

Python bindings for Wt
Other
6 stars 4 forks source link

osx build, can't find WT #7

Open epifanio opened 11 years ago

epifanio commented 11 years ago

I'm using homebrew to satisfy boost and other dep. instaled WT from git in "/usr/local/"

trying to run cmake in pywt :

attached my CMakeCache.txt :

https://gist.github.com/epifanio/5023949

wdu commented 11 years ago

The cmake files need work. What I do for now, is kick out the FIND_PACKAGE for Wt and set the required cmake variables manually:

SET(Wt_LIBRARY wt) SET(Wt_HTTP_LIBRARY wthttp) INCLUDE_DIRECTORIES(/home/wim/project/pywt/github/wt-install/include) LINK_DIRECTORIES(/home/wim/project/pywt/github/wt-install/lib)

wdu commented 11 years ago

But do your .cl files correctly find the documentation now?