views:

164

answers:

1

In VS2008, I can specify that a C# assembly should target only the x86 platform by going to the project properties, clicking the "Build" section, and then setting the "Platform target" box.

What is the equivalent for an assembly written in C++?

+1  A: 

You have to create a new platform:

  • Select the Build menu.
  • Select Configuration Manager... on the menu. The Configuration Manager dialog box opens.
  • Drop down Active solution platform.
  • Select <New...>. Then New Solution Platform dialog box opens.
  • Drop down Type or select the new platform.
  • Select x64 from the list.
  • Click OK in the dialog box to create the new platform.
Martin Liversage
d'oh! thanks.
Eric