sukhmel
sukhmel

Reputation: 1492

Including correct C++ redist with an application

I build my application in Microsoft Visual Studio 2010, and want to bundle it with vcredist, but I have to do it manually. Is there a way to automatically get vcredist corresponding to the one I used to build my application? I need only x64 support.

For instance Microsoft Visual Studio 2012 is bundled with vcredist already (it is found under Microsoft Visual Studio 11.0\VC\redist\1033). Microsoft Visual Studio 2010 has similar folder, but there are no executables or packages, only the *.dll files which is not a good option to distribute I think.

Upvotes: 2

Views: 258

Answers (2)

user2862943
user2862943

Reputation: 35

From this legal reference about what you can distribute I assume that the file you need is vs100_piaredist located in Program Files\Common Files\Merge Modules.

Upvotes: 1

wshcdr
wshcdr

Reputation: 967

VS2010 also have the similar folder "/Microsoft Visual Studio 10.0/VC/redist"

Upvotes: 0

Related Questions