bjam, targets from another projects
Hi, It's possible to specify dependency on a target from another project tree? I want to write to my project's "Jamfile" something like this: --- Jamfile --- exe test : test.cpp <dll>$(BOOST_ROOT)/libs/threads/build/boost_thread : <include>$(BOOST_ROOT) ; --- Thanks and regards, w
"Vaclav Vesely"
Hi,
It's possible to specify dependency on a target from another project tree? I want to write to my project's "Jamfile" something like this:
--- Jamfile --- exe test : test.cpp <dll>$(BOOST_ROOT)/libs/threads/build/boost_thread : <include>$(BOOST_ROOT) ; ---
Only in Boost.Build v2. You can of course use <find-library>boost_thread and <library-path>path-to-threads-lib in v1, but it won't automatically update the threads library. -- Dave Abrahams Boost Consulting www.boost-consulting.com
participants (2)
-
David Abrahams
-
Vaclav Vesely