1Visual Studio 9 2008 2-------------------- 3 4Generates Visual Studio 9 2008 project files. 5 6Platform Selection 7^^^^^^^^^^^^^^^^^^ 8 9The default target platform name (architecture) is ``Win32``. 10 11.. versionadded:: 3.1 12 The :variable:`CMAKE_GENERATOR_PLATFORM` variable may be set, perhaps 13 via the :manual:`cmake(1)` ``-A`` option, to specify a target platform 14 name (architecture). For example: 15 16 * ``cmake -G "Visual Studio 9 2008" -A Win32`` 17 * ``cmake -G "Visual Studio 9 2008" -A x64`` 18 * ``cmake -G "Visual Studio 9 2008" -A Itanium`` 19 * ``cmake -G "Visual Studio 9 2008" -A <WinCE-SDK>`` 20 (Specify a target platform matching a Windows CE SDK name.) 21 22For compatibility with CMake versions prior to 3.1, one may specify 23a target platform name optionally at the end of the generator name. 24This is supported only for: 25 26``Visual Studio 9 2008 Win64`` 27 Specify target platform ``x64``. 28 29``Visual Studio 9 2008 IA64`` 30 Specify target platform ``Itanium``. 31 32``Visual Studio 9 2008 <WinCE-SDK>`` 33 Specify target platform matching a Windows CE SDK name. 34