[CXX-1313] "bsoncxx" depends on "bson-1.0" if BUILD_SHARED_LIBS, else depends on "bson-static-1.0" Created: 12/Apr/17 Updated: 19/Apr/17 Resolved: 14/Apr/17 |
|
| Status: | Closed |
| Project: | C++ Driver |
| Component/s: | Build |
| Affects Version/s: | None |
| Fix Version/s: | 3.2.0-rc0 |
| Type: | New Feature | Priority: | Major - P3 |
| Reporter: | J Rassi | Assignee: | J Rassi |
| Resolution: | Done | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Epic Link: | static-linking |
| Description |
|
Currently, both the "bsoncxx" and "bsoncxx_static" targets depend on the "bson-1.0" library, which is the shared libbson library. We should remove the "bsoncxx_static" target, and make the "bsoncxx" target a shared or static library depending on the user value for BUILD_SHARED_LIBS. If BUILD_SHARED_LIBS is on, "bsoncxx" should depend on "bson-1.0"; else, if should depend on "bson-static-1.0". This has the effect of limiting users to building either the static library or the shared library, but not both at once. |
| Comments |
| Comment by J Rassi [ 19/Apr/17 ] |
|
Author: {u'username': u'jrassi', u'name': u'J. Rassi', u'email': u'rassi@10gen.com'}Message: |
| Comment by J Rassi [ 14/Apr/17 ] |
|
Author: {u'username': u'jrassi', u'name': u'J. Rassi', u'email': u'rassi@10gen.com'}Message: |
| Comment by J Rassi [ 14/Apr/17 ] |
|
Author: {u'username': u'jrassi', u'name': u'J. Rassi', u'email': u'rassi@10gen.com'}Message: BUILD_SHARED_LIBS=ON now disables the static library build. |