From: NAKAMURA Takumi
Date: Tue, 27 Nov 2012 23:34:08 +0000 (+0000)
Subject: clang/www/get_started.html: s/cmake/CMake/
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0dffb7b7feff937269c1ffeefb357701a91059fd;p=clang
clang/www/get_started.html: s/cmake/CMake/
Suggested by Sean McBride, thanks!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168744 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/www/get_started.html b/www/get_started.html
index 7756f9e2e4..86b5e17574 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -138,7 +138,7 @@ Visual Studio:
Subversion. Source code control program. Get it from:
http://subversion.tigris.org/getting.html
- cmake. This is used for generating Visual Studio solution and
+ CMake. This is used for generating Visual Studio solution and
project files. Get it from:
http://www.cmake.org/cmake/resources/software.html
@@ -169,19 +169,19 @@ Visual Studio:
svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
- Run cmake to generate the Visual Studio solution and project files:
+ Run CMake to generate the Visual Studio solution and project files:
- cd ..\.. (back to where you started)
- mkdir build (for building without polluting the source dir)
- cd build
- 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
+
- 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
+ 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.
+ more information on other configuration options for CMake.
The above, if successful, will have created an LLVM.sln file in the
build directory.