summaryrefslogtreecommitdiffstats
path: root/www/get_started.html
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-11-27 23:34:08 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-11-27 23:34:08 +0000
commit0dffb7b7feff937269c1ffeefb357701a91059fd (patch)
tree0ebf6c078786422df3181c719928ecb1b28591d6 /www/get_started.html
parentbd8a11e224c3ec6cbc4bb9b1fc70a8aa3a633e43 (diff)
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
Diffstat (limited to 'www/get_started.html')
-rw-r--r--www/get_started.html10
1 files changed, 5 insertions, 5 deletions
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:</p>
<li><b>Subversion</b>. Source code control program. Get it from:
<a href="http://subversion.tigris.org/getting.html">
http://subversion.tigris.org/getting.html</a></li>
- <li><b>cmake</b>. This is used for generating Visual Studio solution and
+ <li><b>CMake</b>. This is used for generating Visual Studio solution and
project files. Get it from:
<a href="http://www.cmake.org/cmake/resources/software.html">
http://www.cmake.org/cmake/resources/software.html</a></li>
@@ -169,19 +169,19 @@ Visual Studio:</p>
<li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
</ul>
</li>
- <li>Run cmake to generate the Visual Studio solution and project files:
+ <li>Run CMake to generate the Visual Studio solution and project files:
<ul>
<li><tt>cd ..\..</tt> (back to where you started)</li>
<li><tt>mkdir build</tt> (for building without polluting the source dir)</li>
<li><tt>cd build</tt></li>
<li>If you are using Visual Studio 2008: <tt>cmake -G "Visual Studio 9 2008" ..\llvm</tt></li>
<li>Or if you are using Visual Studio 2010: <tt>cmake -G "Visual Studio 10" ..\llvm</tt></li>
- <li>By default, cmake will target LLVM to X86. If you want all targets
+ <li>By default, CMake will target LLVM to X86. If you want all targets
(needed if you want to run the LLVM tests), add the <tt>-DLLVM_TARGETS_TO_BUILD=all</tt> 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.</li>
<li>See the <a href="http://www.llvm.org/docs/CMake.html">LLVM CMake guide</a> for
- more information on other configuration options for cmake.</li>
+ more information on other configuration options for CMake.</li>
<li>The above, if successful, will have created an LLVM.sln file in the
<tt>build</tt> directory.
</ul>