Until now our teams worked with VSS and we are in the middle of process to move to TFS2010 and VS2010. Most of our code is C++ and we use a lot of 3rd party libraries such as Boost, OpenCV, OpenSSL and others. Based on best practices I read, I am considering a few options to handle 3rd party headers and libraries in our multiple solutions and projects.
I create a standalone TFS Project for all 3rd party libraries and store sources/includes/outputs in it per library and per version. For example:
Dependencies\ -> Boost\ ->boost_ver1\* ->boost_ver2\* -> OpenSSL\ ->openssl-ver1\* ->openssl-ver2\**My TFS source tree looks like:
$\ -> Dependencies\ -> TeamProject1\ -> TeamProject2\ -> TeamProject3\Our TeamProject(s) may contain multiple solutions on different levels in a folder tree.
I prepare a
dependencies.propsfile per Team Project that all projects of given Team Project import into. That .props file adds relevant 3rd party packages to$(IncludePath)and$(LibraryPath). In order to do this I assume that Dependencies project is mapped to a a folder defined by a global environment variable per machine per user.
I have a few questions regarding this approach:
I don't know how to make it work on a build agent because I can't specify environment variable in a Workspace mapping tab of a Build definition. I understand that BuildDirectory var and SourceDir var are changed per build.
How to make sure I get latest relevant third party dependencies before I start build any TeamProject solution.
Is this a "good" approach at all?