nils
nils

Reputation: 338

Visual C++ redistributable doesn't install libraries needed

So I have made an application with Visual C++ and SFML. I used Visual Studio 2015 as the IDE.

Now when I try to run the applications on computers without VS2015 Visual C++ installed, I get the errors that some libraries are missing.

Then I try to install the Visual C++ redistributable 2015 packet which should remove these missing libraries errors.

After that when I try to run the Application again the same errors append.

These are the libraries missing:

Any help is appreciated!

Upvotes: 0

Views: 410

Answers (1)

Chuck Walbourn
Chuck Walbourn

Reputation: 41127

These are the Debug versions of the C/C++ Runtime. They are not deployed by the VCREDIST as you are expected to ship the Release build of your application.

For testing, you can use side-by-side deployment of the Debug CRT or use the provided Debug MSM modules if you have an MSI based setup. You can't ship your application using Debug.

See MSDN

Upvotes: 3

Related Questions