Reputation: 223
Hello can some please explain to me what are the differences between this configuration names in a project, are there difference in the build output?. Unfortunately I am only familliar with the Debug and Release, so please any help would be appreciated Thanks
Debug|Win32,
Release|Win32, Release MinDependency|Win32, Release MinSize|Win32, Unicode Debug|Win32, Unicode Release MinDependency|Win32, Unicode Release MinSize|Win32
Upvotes: 1
Views: 584
Reputation: 941970
These are the kind of configuration names you get for an ATL project, back in the Visual Studio 6 days. The names hint at the selected settings:
This kind of fine-grained control doesn't make make sense anymore these days. Unicode should always be your choice, especially for ATL. You'll want to embed ATL, size is pretty irrelevant today. The optimizer setting is "Maximize speed" these days, /O2 in VS2008
Upvotes: 2