Visual Studio 2010 not autolinking static libraries from projects that are dependencies as it should be supposed to

40,846

Solution 1

This still works, but was changed in VS 2010:

"With VS2010, we stopped supporting project dependencies defining implicit references and we also introduced a new way of defining project dependencies at the project level. Since a project reference and a project dependency are close concepts, both applying to a project, it made sense to have them represented together, in a consistent way, in the project file. As you will see in the snippets below, the only difference between a project reference definition and a project dependency definition consists in metadata that defines the output assembly inclusion/exclusion into/from the main project link command line. Although we did not remove the “Project Dependencies” dialog, we recommend defining new project dependencies via the “Framework and References” dialog. You need to set the “Reference Assembly Output” property in the property page UI to false for a project dependency and to true for a project reference."

Just right-click on the console project, select "Properties->Common Properties->Framework and References->Add New Reference" and add the static library project; also check that "Link Library Dependencies" is True on the right hand side. Seems to work for debug and release builds. You learn something new every day. ;)

Solution 2

They changed the UI for adding C++ project dependencies in VS2010, but oddly enough, without removing the old UI, or in any way indicating that it no longer works.

To create the dependency in VS2010, you need to use "Add New Reference" (can be found in project properties), and maybe also in the project's right-click menu (don't have VS here to check)

The old "Project Dependencies" dialog is basically broken now.

Solution 3

For MSVC 14 (2015 version) right-click on the project, then "Add->Reference..." and check all the needed dependencies.

Yes, it has changed somewhere between 2010 and 2015 versions. Fun!

And if you are looking to link a project that has resources in it - you need to specify the .res file directly in the list of linker input dependencies (project's properties dialog box) as it doesn't get picked up by the above configuration.

UPDATE

Still the same (new) behavior in MSVC 2017

Solution 4

I believe the old UI (dependencies) affects build order for Visual Studio, when building from within the IDE, for info. The new project configuration system embeds the references in each project file so that you can build from outside the IDE (whereas in previous versions, you could not, because you would not get automatic linking for dependencies, since dependencies were only done at the solution level).

There are also some issues with more complex projects in the new system; specifically, all resulting binary projects need to have explicit references to every dependent library to build correctly, whereas previously they could be effectively inherited from other dependent libraries. Same underlying cause, though.

Share:
40,846
Andreas Bonini
Author by

Andreas Bonini

Updated on February 22, 2020

Comments

  • Andreas Bonini
    Andreas Bonini about 4 years
    • Create a new solution with a C++ console command-line project
    • Create a new project, a C++ static library
    • Make the command-line project depend on the library
    • Make sure "Link Library Dependencies" is turned on in Configuration => Linker => General (it is by default)
    • Visual Studio will still not link the library.

    How can I fix this? It worked in Visual Studio 2008.