Reputation: 71
I am using visual studio 2005 for C++ projects. I want to build this project in 64 bits. But there is no option in configuration manager. How I can build this in 64? It need to be built in Visual studio 2005.
Upvotes: 1
Views: 1333
Reputation: 21
Setup VS 2005 -> Repair -> + in C++ Components - check the box x64 Tools
Upvotes: 2
Reputation: 14622
In project Properties > Linker > Advanced > Target Machine, choose "MachineX64"
Upvotes: 0