William -
I believe there are some "magic bits" missing from your post, and my response will outline my assumption,
please clarify if my assumption is incorrect.
(Assumption) You are using bjam and have created your own Jamfile.v2 or Jamroot for compilation of your library.
- If this is the case then you will likely want to perform the following:
##### Begin Jam Cut
use-project /boost : $(BOOST_ROOT) ;
lib yourlib : [ glob src/*.cpp ] # just an assumption you can explicitly specify.
//boost/boost_python
: <link>shared
;
alias install : install-lib ; # you could also add install-bin if you chose to do so
install install-lib : yourlib
: <install-dependencies>on
<install-type>SHARED_LIB
<location>$(YOUR_INSTALL_LOC)
;
explicit install install-lib ; # you could also add install-bin
#### End Jam Cut
to call the target: bjam install
In general you will want to consult: http://www.boost.org/doc/tools/build/doc/html/index.html
Cheers,
Tim
Hi,
I would like to install the boost-python dlls once compiled to be used with
my program, for my dlls i used :
install dist : dllname :
<location>c:/toto
;
so i tried to modify the jamfile located in boost/libs/python/build adding :
install dist : boost_python :
<location>c:/toto
;
but it doesn't work...
Could someone tell me how to use the install rule properly with
boost-python?
Thanks
--
View this message in context: http://www.nabble.com/Using-install-rule-with-boost-python-tp18361245p18361245.html
Sent from the Boost - Build mailing list archive at Nabble.com.
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build