Re: [cgkit-user] cgkit on osx 10.5.6
Brought to you by:
mbaas
|
From: Matthias B. <mat...@gm...> - 2009-01-15 20:49:23
|
massimo di stefano wrote: > cd /opt/gis/cgkit/build/lib > ls | grep python > > libboost_python-xgcc40-mt-1_38.a > libboost_python-xgcc40-mt-1_38.dylib > libboost_python-xgcc40-mt.a > libboost_python-xgcc40-mt.dylib > > but unluky if i trey to build using these options : > > BOOST_LIB = "libboost_python-xgcc40-mt" The name that is set on this variable is just what you would pass to the linker via the -l option. This means, you have to remove the "lib" prefix. (and using a full path won't work, so your second try was wrong) > INC_DIRS = ["/opt/gis/cgkit/build/include/boost-1_38/"] Make sure LIB_DIRS is set as well. - Matthias - |