Reputation: 2526
As the subject says, I'm building my C++ program in Visual Studio 2008. But how could I know if the program built is targeted to 32-bit or 64-bit? I looked around the project properties but couldn't find an option to specify this.
I looked at this article: In Visual Studio, how to correctly build an application for 64-bit machines? But it looks like discussing about C# - I couldn't find any "Any CPU"-like configurations.
Upvotes: 1
Views: 87
Reputation: 6164
Press the "OK" button
The New Solution Platform dialog closes, and now the x64 platform will be available for you to use in the Configuration Manager dialog.
Upvotes: 2