From: John Thompson Date: Wed, 6 Apr 2011 18:22:12 +0000 (+0000) Subject: Added link to LLVM cmake page in Visual Studio section. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13eb5657f9847990c01339de5d96e43d36a6305e;p=clang Added link to LLVM cmake page in Visual Studio section. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129013 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/get_started.html b/www/get_started.html index 6176e9a910..f8745f96bc 100644 --- a/www/get_started.html +++ b/www/get_started.html @@ -157,6 +157,13 @@ Visual Studio:

  • If you are using Visual Studio 2005: cmake -G "Visual Studio 8 2005" ..\llvm
  • Or if you are using Visual Studio 2008: cmake -G "Visual Studio 9 2008" ..\llvm
  • Or if you are using Visual Studio 2010: cmake -G "Visual Studio 10" ..\llvm
  • +
  • By default, cmake will target LLVM to X86. If you want all targets + (needed if you want to run the LLVM tests), add the -DLLVM_TARGETS_TO_BUILD=all option to the + cmake command line. Or specify a target from the LLVM_TARGETS_TO_BUILD + definition in CMakeLists.txt.
  • +
  • See the LLVM CMake guide for + more information on other configuration options for cmake.
  • +
  • The above, if successful, will have created an LLVM.sln file in the llvm directory.