How do you stored 3rd party libraries in source control?
The problem I have is that I can't checkout the source and compile it on just any computer, it has to be the one computer that I installed the library.
Any suggestions?
|
|
How do you stored 3rd party libraries in source control? The problem I have is that I can't checkout the source and compile it on just any computer, it has to be the one computer that I installed the library. Any suggestions?
|
|||
|
|
|
|
Three options:
Whatever the solution you go with, I'd recommend against a "every developer downloads whichever version of the library that ends up compiling" scheme. The risk is high to end up with developers working with different versions than what your end product runs on, either because they forgot to upgrade at some point, or downloaded a more recent version. And that's a bug waiting to happen. |
|||
|
|
|
|
Store it with a ReadMe file that explains how to obtain and install a valid license. Obtain and install valid licenses for all your developer and build machines. |
||
|
|